Passing parameters w RequestDispatcher to Jsps

2000-10-13 Thread Carlos Alonso
I have a question about a Jsp that could be invoked from a HTML page using post method and from a servlet using RequestDispatcher. In the first case it receives a parameter and asks for it using getParameter("Param1") In the second case our intention is send it as a post method does, with: Reques

Re: Passing parameters w RequestDispatcher to Jsps

2000-10-13 Thread Hendrik Schreiber
Carlos, taken from Servlet Spes 2.2, 8.1.1: "In the ServletContext and ServletRequest methods which allow the creation of a RequestDispatcher using path information, optional query string information may be attached to the path. For example, a Developer may obtain a RequestDispatcher by using th

Re: Passing parameters w RequestDispatcher to Jsps

2000-10-15 Thread Carlos Vasquez
This is what I had and it worked fine on JSWDK Put when I went into production with Weblogic 4.5.1 with Service pack 8 it bombed. Anything dealing with servletContext was just not working. Is their any special configuration that you know of to make that work. Thanks. --- Hendrik Schreiber <[EM

Re: Passing parameters w RequestDispatcher to Jsps

2000-10-17 Thread Carlos Alonso
Hi Hendrik, Thanks for your (fast) answer. We tested it with tomcat without any problem. We were looking for something like setAttribute applied to parameters because we do not want to make the params of the URL visible to the user. Nevertheless, using RequestDispatcher the URL finally shown