Thanks for asking Joe.
OK, here is what is going on. This is a Sun
Java Studio Creator application that builds Java Server Faces apps that, in this case at least, use JSP.
In
JSF, you have a "backing bean" that works with each JSP. So, if I have a example1.jsp, I'll have an example1.java file as its page bean.
When you have a JSF component on the JSP, you will get a variable of that type in the backing bean.
For example, if example1.jsp had an image component called image1, then there would be an HtmlGraphicImage variable called image1 in the example1.java file.
The thing is, there are no related variables in the example1.java file for jsp params, so there should be a way to get to the parameter from within the backing bean (example1.java in this example). Once I have the param, I should be able to set its value.
Currently, all I have access to that I can see is form1.
Here is my new, slimmed down, JSP code where you can see the form1 and the jsp param more clearly:
What happens then is the applet gets loaded, and it looks at the URL parameter by doing a getParameter("URL"). The applet then will use that URL to call a servlet to load up a 3D image.
[ May 09, 2005: Message edited by: Darrin Smith ]
[ May 09, 2005: Message edited by: Darrin Smith ]