JSP 0.92 calling servlet

1999-10-14 Thread Steven Lin
I used to use shtml to call and pass parameters to servlet to generate HTML, and now i need change the role of shtml to JSP. I know JSP1.0 support redirect and include function by using standard action: I try to test the following code in jsp, but it generate "Internal Server Error".

JSP calling servlet

1999-10-14 Thread Steven Lin
I know JSP1.0 support redirect and include function by using standard action: But our platform is NAS4.0 and NES3.6.1, it only support JSP 0.92. I try to test the following code in jsp, <% RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("HelloWorld/HelloSer

JSP 0.92 calling servlet and pass parameters.

1999-10-19 Thread Steven Lin
I found that JSP 0.92 can call servlet by add these code: <% getServletContext().getRequestDispatcher("testAP/testServlet").include(reque st,response); %> Our application server is NAS4.0, and it does work both "include" and "forward". But we need more function to pass parameters to servlet in J