Hi, I have been developing a HTML interface to a Neo4j db constructed by an external process. During development, I have been starting the Neo4J desktop App which makes the API to the db available at localhost:7474, which my JS/HTML application can then query.
However, for various reasons I'd like to bundle the frontend in to a Tomcat webapp along (which would load in the db as an embedded instance) and what I was hoping was that I could also expose the Neo4J API via this webapp, rather than running it as a separate process. I had thought that I could simply point to the appropriate class in my web.xml but I don't seem to be able to find this. Is this supported? if it is, could someone provide an example of how I'd enable access to the API via a <servlet> entry in my web.xml? (The alternative approach is that I implement my own servlet which takes in the Cypher query from my frontend and runs it against the embedded db and constructs the JSON response. Since my front end currently is written to send and accept the Neo4j JSON formats, I'd have to recreate that.) Thanks, Rajarshi -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
