> I have a servlet that I want to handle all the URLs. It acts as a super
> servlet and allows us to parse the URLs we receive and act accordingly.
> Right now I have it set up to handle .html. However, when someone makes
> a request to a directory such as:
> http://www.domain.com/whatever/

You need to set up a servlet-chain for mime-type text/html. This will allow
orion to process all pages as normal, and then pass the final output to your
servlet if the mime-type is text/html,however the page is produced (static
html file, servlet, jsp, cgi, etc).

Have a look at the docs for orion-web.xml to see how to do this.

-Joe Walnes


Reply via email to