Hi everyone, Trying for a few hours and not getting anywhere with this one. It should be simple (ha ha).... I am using a servlet mapping to map all requests for url pattern "/control/*" to a jsp. However, I cannot get JRun to find the jsp the servlet mapping points to. I am using the default_app, and have confirmed that default-app.use-webserver-root=true exists. I can call jsp's from my web server (IIS) doc root. I get a 500 when I go to http://localhost/control/ or http://localhost/control/Main.jsp I am successful when I go to http://localhost/Main.jsp JRun says that it cannot find Main.jsp Main.jsp is in my web server document root. I have referred to it as "/Main.jsp" and "Main.jsp" in web.xml Here is an excerpt from my web.xml file: <servlet> <servlet-name>test</servlet-name> <init-param><param-name>initParam1</param-name><param-value>value1</param-va lue></init-param> <init-param><param-name>initParam2</param-name><param-value>value2</param-va lue></init-param> <jsp-file>Main.jsp</jsp-file><display-name></display-name> <description></description> </servlet> <servlet-mapping><url-pattern>/control/*</url-pattern> <servlet-name>test</servlet-name></servlet-mapping> </web-app> Phillip Rhodes [EMAIL PROTECTED] Alcoa eCommerce https://www.ALCOADIRECT.COM 826B Two Allegheny Center Pittsburgh, PA 15212 (412) 553-4900 (phone) (412) 553-2484 (fax) ------------------------------------------------------------------------------ Archives: http://www.egroups.com/group/jrun-interest/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
