Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Saikat Kanjilal
Vipul, I've built a Spring based web service with neo4j in embedded mode using apache cxf, let me know what specific issues you are running into. Thanks Sent from my iPhone On Aug 15, 2011, at 5:29 PM, Andreas Kollegger andreas.kolleg...@neotechnology.com wrote: Hi Vipul, What was the

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Vipul Gupta
Hi Andreas, Yes, I have been trying to run Neo4j as an embedded database, with CXF exposing a WSDL interface. I was having a number of issues in terms of setting these 2 together. Standalone test cases for just the neo4j graph and internal API works fine. I even migrated to 1.1.0.RELEASE and

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Michael Hunger
do you by chance have different version of spring on your classpath? mvn dependency:tree helps to figure that out mobile mail please excuse brevity and typos Am 16.08.2011 um 17:53 schrieb Vipul Gupta vipulgupta...@gmail.com: Hi Andreas, Yes, I have been trying to run Neo4j as an

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Vipul Gupta
Hi Michael, It's all 3.0.5.RELEASE only. Meanwhile do you have any idea about this issue. *Caused by: java.lang.IllegalStateException: Unable to lock store [\neo4j\db\project\graph-project\neostore], this is usually a result of some other Neo4j kernel* * running using the same store. * I have no

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Peter Neubauer
Vipul, Tjud indicates that two processes are trying to open a database instance in the same directory. Could you please check if there is only one java process running with Neo4j at the same time? /peter Sent from my phone. On Aug 16, 2011 7:33 PM, Vipul Gupta vipulgupta...@gmail.com wrote: Hi

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Sujit Pal
Hi Vipul, I saw the same issue when trying to expose an embedded Neo4j database (plus some other things) via a Spring webapp. *Caused by: java.lang.IllegalStateException: Unable to lock store [\neo4j\db\project\graph-project\neostore], this is usually a result of some other Neo4j kernel**

Re: [Neo4j] Any webservice based spring data graph example

2011-08-16 Thread Vipul Gupta
Thanks Sujit and Saikat. I managed to get it up and running now. Regarding the 2 process issue - I have a homegrown ApplicationContext loader which was loading graph context twice. Managed to figure it out after Sujit's suggestion. On Tue, Aug 16, 2011 at 11:18 PM, Sujit Pal

[Neo4j] Any webservice based spring data graph example

2011-08-15 Thread Vipul Gupta
I was having some trouble integrating Apache CXF with Spring data graph container. So I am wondering if there is any webservice based spring data graph example for which I can look at the source code. Please let me know Thanks ___ Neo4j mailing list

Re: [Neo4j] Any webservice based spring data graph example

2011-08-15 Thread Andreas Kollegger
Hi Vipul, What was the trouble you were having with Apache CXF? Were you deploying Neo4j as an embedded database, intending to use CXF to expose an interface? Or were you accessing Neo4j Server's REST api from Apache CXF? I'm not aware of any example projects that have used Apache CXF, but am