Are you sure you deployed your web-app to the ROOT context? It's not just at http://localhost/myApp/app/ is it? One thing I like about Jetty is that it's normally clear to see what's mounted where, as the default '/' servlet will list them when running 'mvn jetty:run'
/Gwyn On Tuesday, October 2, 2007, 2:35:43 PM, smallufo <[EMAIL PROTECTED]> wrote: > This is my web.xml : > <filter> > <filter-name>wicket</filter-name> > <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter -class>> > <init-param> > <param-name>applicationClassName</param-name> > <param-value>foo.bar.MyApplication</param-value> > </init-param> > <init-param> > <param-name>configuration</param-name> > <param-value>DEVELOPMENT</param-value> > </init-param> > </filter> > <filter-mapping> > <filter-name>wicket</filter-name> > <url-pattern>/app/*</url-pattern> > </filter-mapping> > "/app" is virtual in 1.2.6 , there is no "real" /app directory in my > directory , so I cannot put index.html or any files in the /app directory. > 2007/10/2, Martijn Dashorst <[EMAIL PROTECTED]>: >> >> Your web.xml will tell us more. >> >> Do you have mapped your filter to /* or to /app/* ? >> >> And do you have a index.html in your webapp root that redirects to /app ? >> >> Martijn >> /Gwyn --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
