From: Luca C. <lcl...@uc...> - 2009-04-03 01:24:50
|
Jerome wrote: > Hi all > I'm just running a new fresh version of the opal2 beta version on a > tomcat 5.5.27 version. The instalation of opal and the deployment of my > first application (DateService) run without problem. Afterward, the > submit job (Fork on loca server for now) run too , and put the results > in the $CATALIA_HOME/webapps/opal-jobs/appxxxxxx/ directory. I put too > the opal.xml file in the Catalina/localhost directory. > The problem is that can "enter" with the navigator in this directory. > It is not disponible appalication. I can't remember me out what is wrong > with this? How to sda that tomcat act as a "simple" apache server? > > Best regards. > Dear Jerome, I think the problem you have can be fixed modifying the file $CATALIA_HOME/conf/web.xml as explained below. Change: <servlet> <servlet-name>default</servlet-name> <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <init-param> <param-name>listings</param-name> <param-value>false</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> into <init-param> <param-name>listings</param-name> <param-value>true</param-value> </init-param> You just have to turn into true the parameter listing. I hope this solve your problem, Luca |