java-rest-binding icon indicating copy to clipboard operation
java-rest-binding copied to clipboard

Java Bindings for the Neo4J Server REST API, providing an implementation of GraphDatabaseService

Results 31 java-rest-binding issues
Sort by recently updated
recently updated
newest added

I'm getting ``` java java.lang.IllegalAccessError: org/neo4j/helpers/collection/WrappingResourceIterator ``` in a project with neo4j 2.0.1. It looks like there is a version of `org.neo4j.helpers.collection.WrappingResourceIterator` in neo4j-kernel.jar which is `package` protected https://github.com/neo4j/neo4j/blob/master/community/kernel/src/main/java/org/neo4j/helpers/collection/WrappingResourceIterator.java The...

Now java-rest-binding uses the jersey-client version is 1.4 ,the latest jersey-client version is 2.7 . The jersey-client dependency is too old ,it will casue more conflict with other libraries ,could...

I have a hard time trying to use the java-rest-bindings. There is no real API documentation, and in general I only can find how to make "raw" REST requests. If...

BatchRestAPITest.java Fail test: testExecuteCypherInBatch()

Can OSGi manifest headers be added? This can easily be done by the Maven Bnd Plugin: http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html Alternatively I would be happy to do this for you if I can...

Hi I deploy on an 1.9.1 neo4j server on ubuntu x64 13.04 with latest server plugin neo4j-spatial-0.11-neo4j-1.9-server-plugin.zip I put data with parameters both lat/lon equal to 5 and I do...

org.neo4j.rest.graphdb.query.RestCypherQueryEngine.query() When calling this method it would be useful to be able to control the timeout of the underlying socket. The current read timeout appears to be 30 seconds by...

The following code segment works fine if calling from RestAPI directly. ``` java RestNode userNode = restApi.getOrCreateNode(restApi.index().forNodes("user-id"), "user-id", userId, null); if (userNode != null){ logger.debug("user node " + userNode.getId() +...

Way to reproduce: - clone repository - import project in Netbeans 7.2 - right-click on the project "Neo4j - Rest GraphDatabaseService Wrapper" - select Show and Resolve Problems to import...