How do you duplicate SERVLET in JSP 1.0?

1999-10-20 Thread richard hargrove
Is it possible to duplicate the generalized functionality of the SERVLET tag supported in JSp 0.92 in JSP 1.0? The jsp:include action is close, but it doesn't allow you to change the request parameters. You can initialize a bean of appropriate scope in the .jsp with the new parameter values and

Simple JSP question

1999-09-29 Thread richard hargrove
Should a JSP 1.0 server have trouble with the following .jsp file or am I missing something: %@ page import="HelloWorldBean" % HTML HEAD TITLEHello, World! JSP/TITLE /HEAD BODY jsp:useBean id="helloWorldBean" class="HelloWorldBean" / H1 jsp:getProperty