Re: [Resin-interest] How do you rewrite the server name in 3.0.24

2007-08-23 Thread Chuck Replogle
Try rewrite-dispatch moved-permanently regexp='^http://host.com' target='http://www.host.com'/ /rewrite-dispatch rewrite-dispatch moved-permanently regexp='^https://www1.host.com' target='https://www.host.com'/ /rewrite-dispatch Resin will copy the tail of the URL for you. -Original

Re: [Resin-interest] Problems including JSP Segments (Fragments) in Servlet

2007-08-20 Thread Chuck Replogle
including JSP Segments (Fragments) in Servlet Chuck Replogle wrote: The Resin servlet that handles JSPs is resin-jsp not resin.jsp. Yes, that's what I was saying. So your servlet-mapping should reflect that, right? You can always include a servlet/ in your resin.conf or web.xml and make

Re: [Resin-interest] Problems including JSP Segments (Fragments) in Servlet

2007-08-19 Thread Chuck Replogle
] Problems including JSP Segments (Fragments) in Servlet Chuck Replogle wrote: I don't have access to app-default.conf but I added the following to my instance resin.conf: servlet-mapping url-pattern=*.jspf servlet-name=resin.jsp/ I believe that should be resin-jsp not resin.jsp. HTH