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: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3215347.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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'
 * documentation.
 *
 * @param db
 * @param configurator
 */
public WrappingNeoServerBootstrapper( AbstractGraphDatabase db,
Configurator configurator )
{
this.db = db;
this.configurator = configurator;
}


See 
https://github.com/neo4j/community/blob/master/server/src/test/java/org/neo4j/server/configuration/ConfiguratorTest.java
for examples on how to build a Configurator for property files or
other.

Does that help?

Cheers,

/peter neubauer

GTalk:      neubauer.peter
Skype       peter.neubauer
Phone       +46 704 106975
LinkedIn   http://www.linkedin.com/in/neubauer
Twitter      http://twitter.com/peterneubauer

http://www.neo4j.org               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Thu, Jul 28, 2011 at 2:51 AM, BatiG batistutagabrielf...@gmail.com wrote:
 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 in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3206212.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3206212.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 of jetty is still open and
everybody can connect to this port..

Have you an idea?

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3203594.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Jetty.. So it's not
 possible to set nginx over jetty.

 And if I create a proxy with nginx, the port 7474 of jetty is still open and
 everybody can connect to this port..

 Have you an idea?

 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3203594.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 believe that maybe with maven it's possible to create the jar file
with the both directories inside.

thanks

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199778.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 adding the META-INF/services/... file to your project as 
build path.

Cheers

Michael

Am 26.07.2011 um 10:35 schrieb 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 believe that maybe with maven it's possible to create the jar file
 with the both directories inside.
 
 thanks
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199778.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 caching, that will be addressed in the next versions. Also 
support for the remote traversal, gremlin, cypher addons which could be used by 
jo4neo to speed up operations.


Am 26.07.2011 um 10:53 schrieb 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 Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199846.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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

Am 26.07.2011 um 11:14 schrieb 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: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199846.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 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

 Am 26.07.2011 um 11:14 schrieb 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: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3199846.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200016.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 avoid building
 the source code from the repository to have the
 WrappingNeoServerBootstrapper class
 
 
 Thanks
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200016.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 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 Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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(
Configurator.WEBSERVER_PORT_PROPERTY_KEY, 7575 );

Do you think it's from this new packages or from my local configuration?

Thanks

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200191.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 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(
 Configurator.WEBSERVER_PORT_PROPERTY_KEY, 7575 );

 Do you think it's from this new packages or from my local configuration?

 Thanks

 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200191.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3200564.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 solution to run a neo4j server with the
readonly mode?

I'd like to use neo4j server only for exploring my data.

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3196726.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 directory.

There is a way of running a server-ui on top of your embedded db, but I think 
it is not documented yet.

http://components.neo4j.org/neo4j-server/snapshot/apidocs/org/neo4j/server/WrappingNeoServerBootstrapper.html

Cheers

Michael

Am 25.07.2011 um 08:55 schrieb 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 solution to run a neo4j server with the
 readonly mode?
 
 I'd like to use neo4j server only for exploring my data.
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3196726.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3196803.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 neo4j. So, I
 can't use it...
 
 Actually, I use the version 1.2 of neo4j.
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3196803.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 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 the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 eclipse has the plugin maven.

After that, in the pom.xml, I've an error with this part : 
parent
artifactIdparent-pom/artifactId
groupIdorg.neo4j/groupId
version8-SNAPSHOT/version
/parent

Where could I find this artifact id?

Many thanks


--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3197730.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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
URI(http://localhost:7474/db/data;));
ObjectGraph graph  = ObjectGraphFactory.instance().get(gds);

I got this error : 

Exception in thread main java.lang.NullPointerException
at jo4neo.ObjectGraphFactory.get(ObjectGraphFactory.java:36)


I assume that I can not export the project jo4neo as I did...

Could you help me?

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3197787.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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:

src/main/resources/META-INF/services/jo4neo.spi.ObjectGraphProvider

which contains a single line (with return):

jo4neo.impl.ObjectGraphProvider

Make sure that src/main/resources (in maven) or some other directory with other 
build tools is added to your build path.

Michael

Am 25.07.2011 um 17:27 schrieb 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
 URI(http://localhost:7474/db/data;));
 ObjectGraph graph  = ObjectGraphFactory.instance().get(gds);
 
 I got this error : 
 
 Exception in thread main java.lang.NullPointerException
   at jo4neo.ObjectGraphFactory.get(ObjectGraphFactory.java:36)
 
 
 I assume that I can not export the project jo4neo as I did...
 
 Could you help me?
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3197787.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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

2011-07-22 Thread BatiG
Hi everybody,

I'd like to download the version 1.3 of neo4j. Where could I find the URL to
download it?

By the way, does someone know jo4neo? Because I'm trying to use jo4neo and
neo4j-server but without success. Maybe someone have a great advise for me
to use the both together.

Many thanks,

Bat

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191002.html
Sent from the Neo4J Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 neo4j. Where could I find the URL
to
 download it?

 By the way, does someone know jo4neo? Because I'm trying to use jo4neo and
 neo4j-server but without success. Maybe someone have a great advise for me
 to use the both together.

 Many thanks,

 Bat

 --
 View this message in context:
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191002.html
 Sent from the Neo4J Community Discussions mailing list archive at
Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 from the Neo4J Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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   http://www.linkedin.com/in/neubauer
Twitter      http://twitter.com/peterneubauer

http://www.neo4j.org               - Your high performance graph database.
http://startupbootcamp.org/    - Öresund - Innovation happens HERE.
http://www.thoughtmade.com - Scandinavia's coolest Bring-a-Thing party.



On Fri, Jul 22, 2011 at 2:46 PM, BatiG batistutagabrielf...@gmail.com wrote:
 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 from the Neo4J Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 jo4neo?

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191573.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 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 jo4neo?
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191573.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 already a web
application running on my server. So it means that, if I use Spring, the
both applications shall communicate together... It could be very difficult
to deploy that...

However, with jo4neo, I can include the code using jo4neo as a library
(.jar) in my running web application : very easy!


Thanks

--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191611.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user


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 the REST API will 
affect the very
fine grained Mapping Operations.

By default jo4neo only works with an embedded Neo4j database. We'll see how it 
works out remotely.

Cheers

Michael

Am 22.07.2011 um 16:55 schrieb 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 already a web
 application running on my server. So it means that, if I use Spring, the
 both applications shall communicate together... It could be very difficult
 to deploy that...
 
 However, with jo4neo, I can include the code using jo4neo as a library
 (.jar) in my running web application : very easy!
 
 
 Thanks
 
 --
 View this message in context: 
 http://neo4j-community-discussions.438527.n3.nabble.com/How-to-download-neo4j-1-3-for-using-jo4Neo-tp3191002p3191611.html
 Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
 ___
 Neo4j mailing list
 User@lists.neo4j.org
 https://lists.neo4j.org/mailman/listinfo/user

___
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user