hi all,
if i were there, i would try following,
1. embed the applet tag in the
JSP instead the HTML and then in the JSP i would retrieve ALL the query
string parameters via request.getParameterNames() and then iterating the Enumeration to get values.
2. then build the PARAM tags with those parameter names and values in JSP.
e.g.
StringBuffer sb = new StringBuffer();
String paramName= null;
while ( enum.hasMoreElements() ) {
paramName = (String)enum.nextElement();
sb.append("<PARAM NAME='"+paramName+"' VALUE='"+request.getParameter(paramName)+"'>");
}
3. retrieve these parameters in the applet.
here, in the applet we don't have getParameters() or getParameterNames() or something like that which will get ALL the parameters. we have to do it one by one and "know" the names of each parameter, which might be a problem , right?
regards
maulin