Re: quick simple question

2005-06-29 Thread Laurie Harper
That gets very messy for static content; you either end up having to serve it all yourself instead of letting Tomcat do so, returning a 302 pointing to a different webapp, or putting Apache in front of Tomcat to 'catch' requests for static content and serve them without calling Tomcat... L. E

Re: quick simple question

2005-06-29 Thread Ed Griebel
What about using a custom RequestProcessor? It would be a huge hack, but you could map *everything* to struts action (map "/*" to struts action) and then check inside the request processor if it's a valid struts action, and if not, forward appropriately. Although the "appropriately" part is a bit o

Re: quick simple question

2005-06-28 Thread Laurie Harper
ori wrote: currently i map all *.do requests to the action servlet. i have an action at myHost/action.do. i also want myHost/action to map to that same struts action. how can i do this? thanks a lot. You only have two options for URL mapping: prefix or extension. In other words, you can sa

quick simple question

2005-06-28 Thread ori
currently i map all *.do requests to the action servlet. i have an action at myHost/action.do. i also want myHost/action to map to that same struts action. how can i do this? thanks a lot. - To unsubscribe, e-mail: [EMAIL P