Re: JSP working but Servlets not working

2002-09-23 Thread Robert Nicholson
I think you need to define a servlet-mapping in web.xml On Monday, September 23, 2002, at 01:53 AM, Manoj Kithany wrote: Hi Experts, Greetings! I am using Apache 1.3.26 + (Jboss 3.0.3, Tomcat 4.0.4 bundle) I treid to creat a small Web Application. My JSP files are WORKING properly BUT

JSP working but Servlets not working

2002-09-22 Thread Manoj Kithany
Hi Experts, Greetings! I am using Apache 1.3.26 + (Jboss 3.0.3, Tomcat 4.0.4 bundle) I treid to creat a small Web Application. My JSP files are WORKING properly BUT when Servlet is called (from JSP Page), I get No Context COnfigured Error My Directory structure is as follows: /kithany (root)

JSP working but Servlets not working

2002-09-22 Thread Manoj Kithany
Hi Experts, Greetings! I am using Apache 1.3.26 + (Jboss 3.0.3, Tomcat 4.0.4 bundle) I treid to creat a small Web Application. My JSP files are WORKING properly BUT when Servlet is called (from JSP Page), I get No Context COnfigured Error My Directory structure is as follows: /kithany (root)

Re: JSP working but Servlets not working

2002-09-22 Thread Lindomar
What Dave said is ok, but try: form action=/kithany/HelloWorldExample method=post Because your context /HelloWorldExample was configurate in your web.xml. It was work too. - Original Message - From: Dave Ford [EMAIL PROTECTED] form action=/kithany/servlet/HelloWorldExample

Re: JSP working but Servlets not working

2002-09-22 Thread Dave Ford
Subject: JSP working but Servlets not working Hi Experts, Greetings! I am using Apache 1.3.26 + (Jboss 3.0.3, Tomcat 4.0.4 bundle) I treid to creat a small Web Application. My JSP files are WORKING properly BUT when Servlet is called (from JSP Page), I get No Context COnfigured Error My

Re: JSP working but Servlets not working

2002-09-22 Thread Manoj Kithany
- THANKS again Experts! Mano From: Lindomar [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: JSP working but Servlets not working Date: Sun, 22 Sep 2002 16:26:10 -0300 What Dave said is ok

Re: JSP working but Servlets not working

2002-09-22 Thread Lindomar
, 2002 4:31 PM Subject: Re: JSP working but Servlets not working Quer ter seu próprio endereço na Internet? Garanta já o seu e ainda ganhe cinco e-mails personalizados. DomíniosBOL - http://dominios.bol.com.br Hi Mr Dave and Lindomar, THANKS for your reply. I tried to give actin as /kithany

Re: JSP working but Servlets not working

2002-09-22 Thread Jacob Kjome
Notice your form action: form action=/HelloWorldExample method=post You prefixed it with a / meaning that it looks for your servlet from the root of the web. Since your context is not the root of the web, the message you got is exactly what I would expect. To be correct, here is what you