Re: [Neo4j] Neo4j REST API and JAXB

2010-12-29 Thread Peter Neubauer
Very cool Christopher, Tis looks like a perfect way to test the server. As we are considering using more scale in at least our testing, we really should look into this for easing web testing to start with! I guess Andres and Andreas will be all over this after New Year :) /Peter On Wednesday, Dec

Re: [Neo4j] Accessing node relationships via the Python REST client

2010-12-29 Thread Peter Neubauer
Javier, changed as of revision 8182, hope it will make it into the release! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter      http://twitter.com/peterneubauer http://www.neo4j.org 

Re: [Neo4j] Neo4j Spatial question

2010-12-29 Thread Peter Neubauer
Axel, I just pushed a first version of a Neo4j Spatial server plugin to github, see https://github.com/neo4j/neo4j-spatial/blob/f9e75ac62867ecd3fc178f01cfc8bbb40abda3ff/src/main/java/org/neo4j/gis/spatial/server/plugin/SpatialPlugin.java Basically, you copy all dependencies and the neo4j-spatial

Re: [Neo4j] Accessing node relationships via the Python REST client

2010-12-29 Thread Javier de la Rosa
On Wed, Dec 29, 2010 at 17:40, Peter Neubauer wrote: > Javier, > you have any example of that? Just tried the default example plugins, > they look like I mean, I was talking about the keys "extensions-info", "node-index" and "relationship-index". "reference_node" is already using the underscore.

Re: [Neo4j] Accessing node relationships via the Python REST client

2010-12-29 Thread Peter Neubauer
Javier, you have any example of that? Just tried the default example plugins, they look like [~/code/tmp] $curl http://localhost:7474/db/data/ { "extensions-info" : "http://localhost:7474/db/data/ext";, "node" : "http://localhost:7474/db/data/node";, "node-index" : "http://localhost:7474/db/

Re: [Neo4j] Neo4j REST API and JAXB

2010-12-29 Thread Christopher Schmidt
I am answering my own thread here, just in case someone is interested... I solved my unmarshaling issue with Neo4j REST, JAXB and Jersey with using the Jackson JSON processor (http://jackson.codehaus.org/) instead of Jersey JSON. This makes it easy to write a POPO representation of Neo4j's REST *