Hello, the only way i found to handle with a single .war more than one context path is the following in the server.xml
<Context docBase="myApp" path="/en" reloadable="true" /> <Context docBase="myApp" path="/it" reloadable="true" /> But this cause myApp being "loaded" TWICE (or many times if i wish to handle many languages, it, en, fr, and so) Is there some alternative way? I have the underlying .war written in struts2 and it's context-path indipendent, so the best choice for me would be to place the "language" information in the context-path section of the url. Thank you --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org