Hi, i'm doing a sample for to learn GAE. In my example HELLO WORLD i have created ENTERPRISE APPLICATION PROJECT with 2 Dynamic Web project inside:
-Giuseppeit_default->module:default -Giuseppeit_task->module:task Now when i run locally my project i view only default Module. I have changed Giuseppeit_default's index.html like: <body> > <h1>Ciao Giuseppe!</h1> > > <table> > <tr> > <td colspan="2" style="font-weight:bold;">Available Servlets:</td> > > </tr> > <tr> > <td><a href="giuseppeit_default">GiuseppeIT_default</a></td> > </tr> > <tr> > <td><a href="giuseppeit_task">GiuseppeIT_task</a></td> > </tr> > </table> > </body> > > I want a new link to second Module Giuseppeit_task. I have created dispatch.xml in: Giuseppeit_default\WebContent\dispatch.xml like: <?xml version ="1.0" encoding="UTF-8"?> > > <dispatch-entries> > <dispatch> > <url>localhost/</url> > <module>default</module> > </dispatch> > <dispatch> > <url>*/giuseppeit_task/*</url> > <module>task</module> > </dispatch> > </dispatch-entries> > > Now when i run my project i view 2 link: GiuseppeIT_default <http://localhost:8888/giuseppeit_default>GiuseppeIT_task <http://localhost:8888/giuseppeit_task> But when i click on GiuseppeIT_task i view ERROR 404. Why? where is the problem? Thanks for help me Regards Giuseppe -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/af8cd010-69ec-4d8e-aabd-a284038e0a5a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
