hi ista
I read in the javadoc JcrRemotingServlet (http://jackrabbit.apache.org/api/2.1/org/apache/jackrabbit/server/remoting/davex/JcrRemotingServlet.html) it's possible to do a "batch read" - an HTTP GET I suppose ? in json format.
right
Could you please give me an exemple, because I understand nothing.
nothing?
I want to do an HTTP GET to get the value of a jcr node, and a response in json format.
what do you mean by 'get the value of a jcr node'? did you already deploy the jackrabbit-webapp.war? this comes with some introduction and examples... http://yourhost:yourport/yourcontext/remoting/index.jsp intro for batch read: http://yourhost:yourport/yourcontext/remoting/read.jsp#batch_read and a simple form to test it: http://yourhost:yourport/yourcontext/remoting/read_batch.jsp - type in the path of the node you want to be read - define how many levels deep you want be included in the response - and finally select the last param just for display purpose. if you just want to read the value of a single property there is no need for 'batch' reading... you simply request the property's representation which in case of the jcr-remoting is a separate dav resource (non-collection). hope that helps. regards angela
Thanks.
