Hi, On Mon, Dec 9, 2013 at 5:40 PM, ChadDavis <[email protected]> wrote: > ...What I'm hoping is that I can add Sling directly to my jackrabbit based > repo server. My repo server is simply the web application deployment from > Jackrabbit, with some extra server side functionality that we added -- > mostly for admin tasks. Our main app connects via the davex, but I think > I'd like to just add Sling directly to that web app. . . any obvious > barriers here?...
Sling is mostly just a servlet so you might be able to mix both that and your existing code in a single webapp, but you might get into jar version conflicts. Another option is to run the Sling war file as a separate webapp, and use JNDI to access the Repository object from your existing webapp. I haven't used it in a long time but the contrib/jcr/jackrabbit-client should allow you to do that. -Bertrand
