Hello all,

I have an appfuse application that works in jetty. I am trying to run it in tomcat without success.

The problem is: I can access to the original appfuse pages, for example: http://localhost:8081/myapp-1.0-SNAPSHOT/mainMenu.html, but I am unable to access to app pages like http://localhost:8081/myapp-1.0-SNAPSHOT/mylist.html, etc in tomcat. I can access to all the pages using jetty though.

I did a mvn clean, I looked for the difference between the controller declarations and my declarations. I even tried this configuration:

<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
       <property name="mappings">
           <value>
               /admin/activeUsers.html=filenameController
               /admin/flushCache.html=filenameController
               /admin/reload.html=reloadController
               /admin/users.html=userController
               /mainMenu.html=filenameController
               /passwordHint.html=passwordHintController
               /test.html=filenameController
           </value>
       </property>
       <property name="order" value="0"/>
   </bean>

with no success. I can see mainMenu.html but I can not see test.html!

I do not know where the problem is.

Any ideas?

Thanks

Regards

Pablo




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to