Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-18 Thread Jacob Hansson
Georg, Like you noticed and like Jim mentioned, the server will pick up on the domain you are using, but the actual URI structure is fixed. You are supposed to be able to change the mount points for the various server components, by setting these properties in your server config:

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-18 Thread Jacob Hansson
Looked over the configuration properties I mentioned, and it seems I was incorrect, am unable to reproduce the problems I saw before. Doing something like: org.neo4j.server.webadmin.management.uri=/asd/ Will make the server move management stuff to that URI, and webadmin will follow suit. So for

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-18 Thread Jim Webber
Hey Jake, [with my RESTafarian hat on] Will make the server move management stuff to that URI, and webadmin will follow suit. So for your case, you should be able to do: org.neo4j.server.webadmin.data.uri=/neo4jdb/db/data/ org.neo4j.server.webadmin.management.uri=/neo4jdb/db/manage/ I

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-17 Thread Peter Neubauer
Georg, yes, the Webadmin part of Neo4j is a standalone app that only needs the initial pointer to the server management endpoint, so you should be able to put it somewhere else if you can initialize it correctly (Firebug is your friend) Also, it is built from Coffeescript with a maven plugin that

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-14 Thread Peter Neubauer
Georg, mmh! I could try setting this up on my local machine, but is anyone else having input here? Seems like we should examine the Webadmin Javascript requests. Can you access the data REST endpoint with curl? Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone 

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-14 Thread Georg Summer
Yeah Curl works fine; as well as from a Browser; curl http://server-ip/neo4jdb/db/manage/ { services : { console : http://server-ip/db/manage/server/console, jmx : http://1server-ip/db/manage/server/jmx, monitor : http://server-ip/db/manage/server/monitor } } what I just noticed

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-14 Thread Jim Webber
Hi guys, Jim, what is your RESTy expertise on this? Our JAX-RS plumbing will dispatch on very specific parts of the URI (that's just the way JAX-RS works). So if ultimately you send the server something that doesn't match, it's either going to cause a 404 or similar, or where we think it's

Re: [Neo4j] [neo4j] Exposing Webadmin

2011-04-14 Thread Georg Summer
so in theory if I changed the proxy settings to: ProxyPass / http://ip:7474 ProxyPassReverse / http://ip:7474 and reverse the neo4j-server.properties to the original state should work out. (To answer that myself: yes it does) Any idea how I could configure these proxy settings in a nicer way so