[Neo4j] Re: Request For Neo4j-Android connection example

2015-02-24 Thread Jeyaganeshan Jeyatharsini
http://stackoverflow.com/questions/28323104/is-it-possible-to-query-a-neo4j-db-using-cypher-via-the-rest-api-and-return-th On Tue, Feb 24, 2015 at 5:12 PM, Jeyaganeshan Jeyatharsini < 6thar...@gmail.com> wrote: > > http://stackoverflow.com/questions/3027066/how-to-send-a-json-object-

[Neo4j] Re: Request For Neo4j-Android connection example

2015-02-24 Thread Jeyaganeshan Jeyatharsini
http://stackoverflow.com/questions/3027066/how-to-send-a-json-object-over-request-with-android On Tue, Feb 24, 2015 at 5:11 PM, Jeyaganeshan Jeyatharsini < 6thar...@gmail.com> wrote: > > http://stackoverflow.com/questions/16187789/java-example-of-running-cypher-queries-in-neo4j-using

[Neo4j] Re: Request For Neo4j-Android connection example

2015-02-24 Thread Jeyaganeshan Jeyatharsini
http://stackoverflow.com/questions/16187789/java-example-of-running-cypher-queries-in-neo4j-using-rest On Tue, Feb 24, 2015 at 4:44 PM, Jeyaganeshan Jeyatharsini < 6thar...@gmail.com> wrote: > I tried to create a node in neo4j using AndroidHttpClient... Connection is > fine..

[Neo4j] Request For Neo4j-Android connection example

2015-02-24 Thread Jeyaganeshan Jeyatharsini
I tried to create a node in neo4j using AndroidHttpClient... Connection is fine.. I got 200 as response code.. but when I tried to execute cypher query to create a node, it doesn't work: I have attached my code file... can you please give an example using AndroidHttpClient... -- *JeyatharsiniUnde

[Neo4j] Neo4j JSON object in Android

2014-09-17 Thread Jeyaganeshan Jeyatharsini
I use HTTPClient.. I need to add the following one: { "to" : "http://localhost:7474/db/data/node/253";, "max_depth" : 3, "relationships" : { "type" : "to", "direction" : "out" }, "algorithm" : "shortestPath" } I can use List urlParameters = new ArrayList(); urlParameters.add(n

[Neo4j] Connect to Neo4j from Android

2014-09-16 Thread Jeyaganeshan Jeyatharsini
My Neo4j database is in D:\\Neo4j\\routefinder.graphdb directory.. I need to access through android program which runs on emulator of PC. What value needs to be set as SERVER_ROOT_URI? will http://localhost:7474/ work or not? -- You received this message because you are subscribed to the Googl

Re: [Neo4j] Embedded database starting problem in Neo4j 2.1.1

2014-09-16 Thread Jeyaganeshan Jeyatharsini
sions.html > > On Tue, Sep 16, 2014 at 11:12 AM, Jeyaganeshan Jeyatharsini < > 6tha...@gmail.com > wrote: > >> I have installed Neo4j 2.1.1 in the directory of C:\Program Files\Neo4j >> Community in windows 8 32 bit machine. It creates default.graphdb by >> def

[Neo4j] Should I add index to view graph in web interface?

2014-09-16 Thread Jeyaganeshan Jeyatharsini
Should I add index to view graph in web interface? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more options, visit https://g

[Neo4j] Embedded database starting problem in Neo4j 2.1.1

2014-09-16 Thread Jeyaganeshan Jeyatharsini
I have installed Neo4j 2.1.1 in the directory of C:\Program Files\Neo4j Community in windows 8 32 bit machine. It creates default.graphdb by default C:\Users\Jeyatharshini\Documents\Neo4j directory. I copied it in the same directory and rename as routeFinder.graphdb.. I browsed through Neo4j w

Re: [Neo4j] Re: Connect Neo4j with Android

2014-09-12 Thread Jeyaganeshan Jeyatharsini
T. > Check the following link for cypher-jdbc: > http://docs.neo4j.org/chunked/stable/tutorials-cypher-java.html > > -Sukaant Chaudhary > <http://in.linkedin.com/pub/sukaant-chaudhary/33/ba8/479> > > On Fri, Sep 12, 2014 at 12:00 PM, Jeyaganeshan Jeyatharsini < > 6tha...@g

[Neo4j] Re: Connect Neo4j with JavaFX

2014-09-12 Thread Jeyaganeshan Jeyatharsini
But can I use embedded Java to communicate with Neo4j server in cloud? On Friday, 12 September 2014 12:21:48 UTC+5:30, Jeyaganeshan Jeyatharsini wrote: > > I need to connect JavaFX client with Neo4j server.. What web service I can > use? Can I use Jersey for that? Or Can someone sugges

[Neo4j] Connect Neo4j with JavaFX

2014-09-11 Thread Jeyaganeshan Jeyatharsini
I need to connect JavaFX client with Neo4j server.. What web service I can use? Can I use Jersey for that? Or Can someone suggest any web service... -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emai

[Neo4j] Re: Connect Neo4j with Android

2014-09-11 Thread Jeyaganeshan Jeyatharsini
I need to use RestAPI.. They have used jersey for their example... Jersey webservices is Java supported... will it support to Android if I add jar files into class path? Or should I use Apache client? On Tuesday, 9 September 2014 12:26:52 UTC+5:30, Jeyaganeshan Jeyatharsini wrote: > > I n

[Neo4j] Re: Connect Neo4j with Android

2014-09-11 Thread Jeyaganeshan Jeyatharsini
ldn't find proper example for that... This might be silly question... But I am beginner to server-client communication Sorry for that... On Tuesday, 9 September 2014 12:26:52 UTC+5:30, Jeyaganeshan Jeyatharsini wrote: > > I need to connect neo4j database with android programming.

[Neo4j] Connect Neo4j with Android

2014-09-08 Thread Jeyaganeshan Jeyatharsini
I need to connect neo4j database with android programming... I embed Neo4j into Java code for testing purpose and I created an interface top of that for my database access. But I am confusing with that... I am poor at connecting with application and Neo4j database... Can someone explains how it

Re: [Neo4j] Add more than one relationship type

2014-09-04 Thread Jeyaganeshan Jeyatharsini
ially large number of > attributes. > > > On 09/03/2014 06:57 AM, Jeyaganeshan Jeyatharsini wrote: > > Am I able to add more than one relationship type to relationships in neo4j? > -- > You received this message because you are subscribed to the Google Groups > &qu

[Neo4j] Re: Add more than one relationship type

2014-09-04 Thread Jeyaganeshan Jeyatharsini
say? > > Am Mittwoch, 3. September 2014 14:57:46 UTC+2 schrieb Jeyaganeshan > Jeyatharsini: >> >> Am I able to add more than one relationship type to relationships in >> neo4j? >> > -- You received this message because you are subscribed to the Google Groups &q

Re: [Neo4j] Add more than one relationship type

2014-09-04 Thread Jeyaganeshan Jeyatharsini
ially large number of > attributes. > > > On 09/03/2014 06:57 AM, Jeyaganeshan Jeyatharsini wrote: > > Am I able to add more than one relationship type to relationships in neo4j? > -- > You received this message because you are subscribed to the Google Groups > "Ne

[Neo4j] Add more than one relationship type

2014-09-03 Thread Jeyaganeshan Jeyatharsini
Am I able to add more than one relationship type to relationships in neo4j? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more

[Neo4j] Visualizing neo4j 2.1 database nodes using neoclipse

2014-09-02 Thread Jeyaganeshan Jeyatharsini
I installed neoclipse1.8-win32.win32.x86 and I use neo4j version of 2.1. I tried to visualize my database using neoclipse with connection url of C:\Program Files\Neo4j Community\bin. It connects successfully... But it doesn't visualize nodes. I need help... -- You received this message becaus

[Neo4j] Need to merge if a node already exists - Java

2014-08-15 Thread Jeyaganeshan Jeyatharsini
I need to check a node whether it exists or not & If it exists I need to get the node in Java. Is there any facility in Neo4j? How to achieve it? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails