From: Luca C. <luc...@gm...> - 2013-04-10 16:49:41
|
On Wed, Apr 10, 2013 at 4:07 AM, Guillermo Marco Puche < gui...@si...> wrote: > Hello, > > I've managed to secure my whole Tomcat server with HTTPS with user > certificate. > It's working awesome ! > > Connection is required in port 8443 and also asks user for certificate > when trying to access website. > > The problem I got now is that I cannot deploy Opal apps. > I didn't change any of my app *.xml or *.sh that have been working for > some time. > > As I said I just changed Tomcat security. > > I've edited the following parameters in config files in Opal, but still > cannot deploy my app. > > Guillermo, you should not use the "ant deploy and undeploy" target with the latest code. You should copy your app xml files in $CATALINA_HOME/deploy folder and they will get automatically deployed. If you use and deploy when you restart your tomcat the application will get un-deployed. To be able to deploy and undeploy app, you need to be able to establish a connection to tomcat.url + "/opal2/servlet/AxisServlet" Where tomcat.url is the one you defined in etc/opal.properties To verify that you should be able to run java org.apache.axis.client.AdminClient -lhttps://localhost:8443/opal2/servlet/AxisServlet list I think you might need to add a valid client certificate to your local key store. Luca |