It is definitely possible. First make sure you are running 1.2.5 or better (this will fix a bug where posts did not have a '/' after the context name if you choose to deploy the application with a non root context). Map your servlet to '/*' ... Next, deploy. =)
The only other issue to worry about is how to serve static content. My preference is to frontend tomcat or jetty with apache and have apache serve anything located at /images or /css etc. This means in wicket if I want to create an image tag that refers to a static image I create a url that references /images/filename.jpg. When deploying with apache this will be served by apache and when running without apache I deploy a static web application to the /images context. This has proven to work very well for the last few projects I have worked on. Ryan On 3/12/07, cowwoc <[EMAIL PROTECTED]> wrote: > > My point is that you can't do that with Wicket, unless you know > something I don't...? > > Gili > > Ryan wrote: > > In any public application I deploy I remove the servlet context path > > (wicket or no wicket). > > > > Ryan > > > > On 3/12/07, cowwoc <[EMAIL PROTECTED]> wrote: > >> If they use Wicket why doesn't it show at all on their website at > >> joost.com? I am expecting to at least see some evidence of a servlet > >> context path... > >> > >> Gili > >> > >> Brian Topping wrote: > >>> Here I thought they were cool, then they use Ant?!? > >>> > >>> :b > >>> > >>> On Mar 12, 2007, at 8:45 AM, mraible wrote: > >>> > >>>> Thought y'all might be interested: > >>>> > >>>> http://opensource.joost.com/ > >>>> > >>>> Joost is a new company started by the founders of Skype: > >>>> > >>>> http://en.wikipedia.org/wiki/Joost > >>>> > >>>> Matt > >>>> -- > >>>> View this message in context: http://www.nabble.com/Joost-uses- > >>>> Wicket-tf3390296.html#a9437082 > >>>> Sent from the Wicket - User mailing list archive at Nabble.com. > >>>> > >>>> > >>>> ---------------------------------------------------------------------- > >>>> --- > >>>> Take Surveys. Earn Cash. Influence the Future of IT > >>>> Join SourceForge.net's Techsay panel and you'll get the chance to > >>>> share your > >>>> opinions on IT & business topics through brief surveys-and earn cash > >>>> http://www.techsay.com/default.php? > >>>> page=join.php&p=sourceforge&CID=DEVDEV > >>>> _______________________________________________ > >>>> Wicket-user mailing list > >>>> [email protected] > >>>> https://lists.sourceforge.net/lists/listinfo/wicket-user > >>>> > >>> > >>> ------------------------------------------------------------------------- > >>> Take Surveys. Earn Cash. Influence the Future of IT > >>> Join SourceForge.net's Techsay panel and you'll get the chance to share > >>> your > >>> opinions on IT & business topics through brief surveys-and earn cash > >>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >>> _______________________________________________ > >>> Wicket-user mailing list > >>> [email protected] > >>> https://lists.sourceforge.net/lists/listinfo/wicket-user > >> > >> ------------------------------------------------------------------------- > >> Take Surveys. Earn Cash. Influence the Future of IT > >> Join SourceForge.net's Techsay panel and you'll get the chance to share > >> your > >> opinions on IT & business topics through brief surveys-and earn cash > >> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > >> _______________________________________________ > >> Wicket-user mailing list > >> [email protected] > >> https://lists.sourceforge.net/lists/listinfo/wicket-user > >> > >> > >> > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys-and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Wicket-user mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > > > ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
