Ctx( /... ): 404 R( /... + /....jsp + null)J SP file not found
Hi! Presently, I am using Jakarta-Tomcat vers. 3.2 with port:8188 (see server.xml downwords). My application (MyApp) is stored under {TOMCAT-HOME}/webapps /MyApp, and I did store my Jsp-files here (i.e. under {TOMCAT-HOME}/webapps/ MyApp/myJsp.jsp ). This is the configuration of my web.xml: SomeName MyPackage.Control SomeName /Something and under server.xml, I do have this configuration: (...) (...) (...) Then I did start tomcat (with startup.sh), but when I try the following in my servlet (MyPackage.Control): public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { (...) getServletContext ().getRequestDispatcher ("/myJsp.jsp").forward (req, res); (...) } with (http://myHost:8188/MyApp/Something? and run (start) it, then I get the following error messages in tomcat.log: " 2002-11-13 06:04:01 - ContextManager: Adding context Ctx( /MyApp ) 2002-11-13 06:04:01 - PoolTcpConnector: Starting HttpConnectionHandler on 8188 2002-11-13 06:04:01 - PoolTcpConnector: Starting Ajp12ConnectionHandler on 8189 2002-11-13 06:05:09 - Ctx( /MyApp ): 404 R( /MyApp + /myJsp.jsp + null) JSP file not found" My servlet MyPackage.Control delivers as virtual-path: /MyApp/Something and as my real path: {Tomca-Home}/webapps/MyApp/MyApp/Something why can't it find the Jsp-file? what I am doing wrong? why does it deliver this two times .../MyApp/MyApp/...? how should the URL be written? http://...? so that it could find my myJsp.jsp ? I am also using apache1.3.14 , does the error message has anything to do with it? Any suggestion would be appreciated. Thanks in advance! Mbe ### End -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ NEU: Mit GMX ins Internet. Rund um die Uhr für 1 ct/ Min. surfen! -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
RE: error 404 R
look into tomcat\conf\server.xml.. --Pula -Original Message- From: Fredrik Liden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 1:49 PM To: '[EMAIL PROTECTED]' Subject: error 404 R Hello, does anyone know why I keep getting the following messages? I can't find any path in my files that looks like the ones below. can it bring down the server? I'm using tomcat standalone. Any feedback would be appreciated 2001-07-03 09:48:31 - Ctx( /examples ): 404 R( /examples + /html/html/Images/RWS LOGO.gif + null) null 2001-07-03 09:48:38 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null 2001-07-03 09:48:55 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null
error 404 R
Hello, does anyone know why I keep getting the following messages? I can't find any path in my files that looks like the ones below. can it bring down the server? I'm using tomcat standalone. Any feedback would be appreciated 2001-07-03 09:48:31 - Ctx( /examples ): 404 R( /examples + /html/html/Images/RWS LOGO.gif + null) null 2001-07-03 09:48:38 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null 2001-07-03 09:48:55 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null
404 R
Hello, does anyone know why I keep getting the following messages? I can't find any path in my files that looks like the ones below. can it bring down the server? I'm using tomcat standalone. Any feedback would be appreciated 2001-07-03 09:48:31 - Ctx( /examples ): 404 R( /examples + /html/html/Images/RWS LOGO.gif + null) null 2001-07-03 09:48:38 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null 2001-07-03 09:48:55 - Ctx( /examples ): 404 R( /examples + /html/Images/RWSLOGO. gif + null) null
Ctx( /awi ): 404 R( /awi + /awi/performer/pages/Holder.jsp + null) JSP file not found
Title: Ctx( /awi ): 404 R( /awi + /awi/performer/pages/Holder.jsp + null) JSP file not found Hi, I have installed the 'awi' application under webapps (webapps/awi/...). No special entries were made in server.xml. Finding that when a servlet forwards to "/awi//xyz.jsp" the page is not found. Any suggestions? -- Thanks in advance Jacob -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 21, 2000 10:25 AM To: [EMAIL PROTECTED] Subject: Re: WEB.XML Edson Carlos Ericksson Richter wrote: > Anyone know why this is not working? > > > > invoker > > > */servlet/* > > > Yes ... this URL pattern is not legal according to the servlet specification <http://java.sun.com/products/servlet/download.html>. You can only have a "*" wildcard at the end, not at the beginning, of a pattern. Further, servlet mappings are specific to a particular web application, not global to multiple applications. > > Edson Carlos Ericksson Richter Craig McClanahan