Re: [Stripes-users] welcome page

2009-03-11 Thread Vadim
No, it's set the dispatcher to *.action. Actually, why *.jsp-s goes thru filter and *.action-s thru dispatcher? -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cr

[Stripes-users] Stripes web.xml

2009-03-11 Thread Vadim
http://www.stripesframework.org/display/stripes/Quick+Start+Guide take a look please at this link. Why they bind *.jsp to filter, and *.action to dispatcher servlet? Where can i actually find some info on this topic (configurations)? --

[Stripes-users] welcome page

2009-03-10 Thread Vadim Vararu
Hi everybody! How could i set the welcome page to be not a .jsp, but an action, dispatched by the stripes dispatcher. I tried to do this: /Default.action so, i have in default package a Default class that implements ActionBean and has a default handler method, but it does not work :( --

[Stripes-users] How to set default action (not a jsp) in web.xml?

2009-03-10 Thread Vadim
Hi! I've set in web.xml the welcome file: Default.action So, i have a Default class in default package that has a @defaulthandler which forwards to my .jsp, but something goes wrong an server gives me 404 error code. How actually is correct to set the welcome action? --