Arthur Naylor wrote:
if i use the url-pattern such as in the following ... <servlet-mapping url-pattern="/food/" servlet-name="Categories"/> <servlet-mapping url-pattern="/travel/" servlet-name="Categories"/> <servlet-mapping url-pattern="/wine/" servlet-name="Categories"/> things work fine ... the servlet is called and the page is delivered ... if i try using the regexp as it in the following ... the servlet is not called ... <servlet-mapping url-regexp="/(food | travel | wine)/" servlet-name="Categories"/>
Spaces? Maybe a URL like /food%20/ or /%20travel%20/ will work. Or url-regexp="/(food|travel|wine)/"

-Knut

_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to