Hi Stefan! Stefan Berndt wrote: > I'm testing Neo4J for 1 month and get more and more familiar with it. but > i'm new to the Neo4J REST Server. > I get the Server running but i want to use it with my software. > Now I use the Embedded GraphDatabaseServer but i want to have a Database > Connection with the Server. I know how to communicate via curl with it, but > thats not what I want.
Seems like you want to connect to the DB over a network? > I want to have an Object GraphDataBaseService what I can use in my > JavaCode. but i didn't find a way for it. There's been a little experimenting, but nothing finished in this area. Note that the REST API was designed from the beginning for networked use, while the Java API is designed for embedded use! (which basically means that the Java API is more "chatty") The choices which comes to mind are: * use a Neo4j REST client: http://wiki.neo4j.org/content/Main_Page#Language_and_framework_bindings The REST clients are all pretty new. * use some generic library for accessing REST resources Others can hopefully give some tips here. * use remote-graphdb http://components.neo4j.org/neo4j-remote-graphdb/ This one gives you the same Java API, but performance is not well tested. You could try it out and report your findings, that would be interesting! /anders _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

