Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-08-01 Thread BatiG
I'm not sure to understand because how could I configure neo4j server whith the org.apache.commons.configuration.Configuration? Wich property do I need to add for having the access to the port 7575 secured by a password? Thanks -- View this message in context:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-30 Thread Peter Neubauer
Hi there, looking at this you should be able to provide your own Configurator that can do anything the server configuration can do, also setting the port, /** * Create an instance with custom documentation. * {@link EmbeddedServerConfigurator} is written to fit well here, see its'

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-28 Thread BatiG
When I use nginx as a proxy and block the access to the port 7474, It seems that the connection is lost when I'm on the web application... If I understand, the instance of the neo4j ui server is running on jetty? Why is not possible to configure jetty like we want? thanks -- View this message

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-27 Thread BatiG
But it's not possible to use WrappingNeoServerBootstrapper and Nginx? I can deny or allow some IP address from nginx but the problem is that WrappingNeoServerBootstrapper runs an instance of Jetty.. So it's not possible to set nginx over jetty. And if I create a proxy with nginx, the port 7474

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-27 Thread Anders Nawroth
Hi! Using a firewall to block 7474 to the outside world? /anders 2011-07-27 16:25, BatiG skrev: But it's not possible to use WrappingNeoServerBootstrapper and Nginx? I can deny or allow some IP address from nginx but the problem is that WrappingNeoServerBootstrapper runs an instance of

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Many Thanks, it works. I've one questions : - is it possible to create a jar file from the project jo4neo with the pom.xml? How do you create a jar file of this project? Actually, I use eclipse and I don't know how to include the directory META-INF and jo4neo/message to the jar file. So, I

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Michael Hunger
using maven (install it from maven.apache.org) mvn package will compile, run the tests and create a jo4neo-version.jar in target jo4neo doesn't come with this ServiceLoader setup, obviously they want the user of the library to select the ObjectGraph that they want to use. So it is just about

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Perfect! I'd like to thank you for the great help that you brought to me. Have a nice day -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199804.html Sent from the Neo4j Community Discussions mailing

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Could you tell me if using neo4j-server will decrease strongly the performance/speed of the operations on the graph data base? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199808.html Sent from the

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Michael Hunger
Depending on the operation and the latency to the server - probably one order of magnitude. Just try it for yourself in a Proof of Concept. Jo4neo using low level tends to be chatty. Michael Please note that the current version of the java REST wrapper doesn't really employ client side

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
My instances of jo4neo and neo4j-server will be on the same server..So it'll be in local. I only used neo4j-server to have an easly UI administration web app. -- View this message in context:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Michael Hunger
Then it is not sensible to use neo4j-server at all, as performance-wise you will only loose. Rather use the WrappingNeoServerBootstrapper https://github.com/neo4j/community/blob/master/server/src/main/java/org/neo4j/server/WrappingNeoServerBootstrapper.java See the javadoc in the file. Michael

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
I know it but is it possible to modify the properties of some node with this? Is it a read-only instance? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199929.html Sent from the Neo4j Community

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Anders Nawroth
Also see the documentation here: http://docs.neo4j.org/chunked/1.4/server-embedded.html Please ask if anything is unclear on that page. /anders 2011-07-26 11:53, Michael Hunger skrev: Then it is not sensible to use neo4j-server at all, as performance-wise you will only loose. Rather use

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Does one of you have the last package server-api? I want to avoid building the source code from the repository to have the WrappingNeoServerBootstrapper class Thanks -- View this message in context:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Michael Hunger
Just download the distribution from neo4j.org/download It's all in there. Or use ivy/gradle/maven for dependency management and add the dependency to org.neo4j.app:server:1.4 there. Michael Am 26.07.2011 um 13:05 schrieb BatiG: Does one of you have the last package server-api? I want to

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
The last distribution community 1.4 current milestone for unix doesn't contain such class... -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200051.html Sent from the Neo4j Community Discussions

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Where can I find this class without building from the source of neo4j? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200119.html Sent from the Neo4j Community Discussions mailing list archive at

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Anders Nawroth
Hi! http://m2.neo4j.org/releases/org/neo4j/app/neo4j-server/ The file is also found in the system/lib/ directory of the download package. You may need both the .jar and the -static-web.jar. /anders 2011-07-26 14:03, BatiG skrev: Where can I find this class without building from the source of

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Thanks!! I downlaoded both and imported the both into my project. I only have this problem : The type org.apache.commons.configuration.Configuration cannot be resolved. It is indirectly referenced from required .class files With this line : config.configuration().setProperty(

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Anders Nawroth
Oops ... thanks for trying it out. It seems like you should add all of system/lib/ - you may need all of that depending on how you use the server. Probably you can just point your IDE to that directory. /anders 2011-07-26 14:32, BatiG skrev: Thanks!! I downlaoded both and imported the both

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Many thanks at everybody. It works! It was some missing .jar -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200323.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread BatiG
Does it exit some properties to configure the acces at the web application? Like a username/password or IP? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200564.html Sent from the Neo4j Community

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-26 Thread Anders Nawroth
Hi! Does it exit some properties to configure the acces at the web application? Like a username/password or IP? No, you'll have to set something in front of the database server, see: http://docs.neo4j.org/chunked/stable/operations-security.html /anders -- View this message in context:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread BatiG
Pending your modification of jo4neo, do you know if it could be possible that I've one instance of a embedded Graph working on a directory, and running the neo4j server on this directory? I know that I'll have an exception because I run 2 instances on the same directory. But maybe there is a

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread Michael Hunger
Actually jo4neo is actively developed as you can see from the commit log. I submitted my patches to Peter who is also a committer. For using the server you might drop in my API-replacement wrapper: https://github.com/jexp/neo4j-java-rest-binding You cannot run two instances onto the same store

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread BatiG
The problem with this both solutions is : I have to use the version 1.4 of neo4j. However, jo4neo is not yet able to use this version of neo4j. So, I can't use it... Actually, I use the version 1.2 of neo4j. -- View this message in context:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread Michael Hunger
That is not true. If you look at the available versions the latest one already supports Neo4j 1.4.M04. Michael Am 25.07.2011 um 09:47 schrieb BatiG: The problem with this both solutions is : I have to use the version 1.4 of neo4j. However, jo4neo is not yet able to use this version of

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread BatiG
Where I can dowload such version of jo4neo? Actually, I've the version 0.4. Maybe you speak about tue source version of jo4neo? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3196835.html Sent from

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread Michael Hunger
Yes, the source. It is hosted on google code. http://code.google.com/p/jo4neo/ You can easily check it out and build it on your own. Michael Am 25.07.2011 um 10:07 schrieb BatiG: Where I can dowload such version of jo4neo? Actually, I've the version 0.4. Maybe you speak about tue

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread BatiG
I'v some problem with the source code of jo4neo. Maybe you could help me... I downloaded the source code with the command line : svn checkout http://jo4neo.googlecode.com/svn/trunk/ jo4neo-read-only Then, I imported the project (only the directory jo4neo-read-only/jo4neo) into Eclipse. My

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread BatiG
Thanks. Now the project has no more error. However, I'll use this project into an another project, so I make an export of jo4neo project (Right-click-export-jar file into eclipse). If I run this code into the the project : GraphDatabaseService gds = new RestGraphDatabase(new

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-25 Thread Michael Hunger
Do you have more stack-trace available ? If you look at the source code, you can see that it uses the java service loader mechanism. That means in your project you have to provide a file in your classpath, e.g. if you use maven, create:

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread Peter Neubauer
Hi there, I don't think there is much support for jo4neo around, as it is superseded by Spring Data Graph. Could you please try that instead? /peter Sent from my phone. On Jul 22, 2011 12:12 PM, BatiG batistutagabrielf...@gmail.com wrote: Hi everybody, I'd like to download the version 1.3 of

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread BatiG
You mean that Jo4neo is dead and It has been replaced by Spring Data Graph? Is Sping Data graph stable? -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191081.html Sent from the Neo4J Community

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread BatiG
Do you know an another framework that makes POJO as jo4neo or Spring Data Graph? I'd like to test everything before choosing. Thanks -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191250.html Sent

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread Peter Neubauer
Hi there, you could also try https://github.com/tinkerpop/frames/wiki which supports Neo4j. Otherwise, there is a number of non-java bindings for JRuby, Python, Scala and others. Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn  

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread BatiG
Spring Graph Database is not really what I want. And It could be very hard to deploy that on BlazeDS [ http://opensource.adobe.com/wiki/display/blazeds/BlazeDS http://opensource.adobe.com/wiki/display/blazeds/BlazeDS ]. Do you know the developpers of jo4neo? Is it possible to help them to upgrade

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread Michael Hunger
probably I can look into it what are the your issues with spring data graph? Michael mobile mail please excuse brevity and typos Am 22.07.2011 um 16:38 schrieb BatiG batistutagabrielf...@gmail.com: Spring Graph Database is not really what I want. And It could be very hard to deploy that on

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread BatiG
You could look into the code of jo4neo? It could be very usefull and powerfull for everybody!! I mean, with jo4neo, you can create very easly withtout configuration a Graph Database and we could have the web administration. With Spring, you need to configure a lof of files and for myself, I've

Re: [Neo4j] How to download neo4j 1.3 [for using jo4Neo]

2011-07-22 Thread Michael Hunger
You can add Spring Data Graph to any existing Webapp as well. Just saying. I don't think it is difficult to deploy that. Just add SDG to your domain layer. Anyway, whatever approach you use for Object-Graph-Mapping against a remote Server you should be aware that the performance limitations of