Re: Wrong path to servlets

2008-01-30 Thread Emmanuel Milou
: Wrong path to servlets is /servlet actually in the same webapplication as your jsp? Why do I suspect the OP is using the dreaded and despicable InvokerServlet? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only

Re: Wrong path to servlets

2008-01-30 Thread Emmanuel Milou
: Wrong path to servlets is /servlet actually in the same webapplication as your jsp? Why do I suspect the OP is using the dreaded and despicable InvokerServlet? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only

Re: Wrong path to servlets

2008-01-29 Thread david delbecq
Difficult to say, without the actual jsp code Emmanuel Milou a écrit : Hi, I would like to have your input on this problem. It is quite tricky and I hope you will be able to help me. Here is my configuration: JDK 1.6.0_03, Apache-Tomcat5.5.25, connector ajp13. When I click on an option in

Re: Wrong path to servlets

2008-01-29 Thread david delbecq
According to sun's doc: The pathname must begin with a / and is interpreted as relative to the current context root. is /servlet actually in the same webapplication as your jsp? Or did you put your jsp inside ROOT and your servlets inside a separate servlet webapp? In later case, you should use

Wrong path to servlets

2008-01-29 Thread Emmanuel Milou
Hi, I would like to have your input on this problem. It is quite tricky and I hope you will be able to help me. Here is my configuration: JDK 1.6.0_03, Apache-Tomcat5.5.25, connector ajp13. When I click on an option in the menu bar of my home page, JSP code is executed to call the servlet. It

Re: Wrong path to servlets

2008-01-29 Thread Emmanuel Milou
The jsp code is very basic. Here is the content of each jsp file: % getServletContext().getRequestDispatcher(/servlet/org.capella.intranet.agenda.AgendaServlet).forward(request,response); % Of course, each jsp file calls the right servlet... like I said before, if the jsp file is in a sub

RE: Wrong path to servlets

2008-01-29 Thread Caldarale, Charles R
From: david delbecq [mailto:[EMAIL PROTECTED] Subject: Re: Wrong path to servlets is /servlet actually in the same webapplication as your jsp? Why do I suspect the OP is using the dreaded and despicable InvokerServlet? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL