> On Oct 10, 2016, at 3:43 AM, Patrick Brunmayr <[email protected]> wrote: > > > Just a basic question. Where to put fortress-core-1.0.1.jar and its config > folder ? Following the docs its not clear where > to put them. I want to use the Web and Rest functionality in tomcat but i > dont know where i have to put fortress-core-1.0.1.jar and it config folder. > Is tomcat/lib the right directory ? > > PS : I am not using the REST from Java. I want to call the REST service from > PHP
Welcome Patrick, Let’s take the easy part of this question first. For web and rest tomcat deployments the only jar that gets copied into tomcat/lib is the proxy jar which helps with the java-ee security part. (The fortress-core jar is embedded inside the web and rest war files.) This is step#4 here: https://github.com/apache/directory-fortress-commander/blob/master/README-QUICKSTART.md 4. Download the fortress realm proxy jar into tomcat/lib folder: wget http://repo.maven.apache.org/maven2/org/apache/directory/fortress/fortress-realm-proxy/1.0.1/fortress-realm-proxy-1.0.1.jar -P $TOMCAT_HOME/lib where TOMCAT_HOME matches your target env. *** But somehow I think I’m not getting your question. Does this help? Best, Shawn
