{
String[] paramVals = request.getParameterValues(paramName);
if (paramVals != null)
{
xslprocessor.setStylesheetParam(paramName,
new XString(paramVals[0])); // Update ctor -sc
}
}
}
catch (Exception e)
{
}
}
try
{
xslprocessor.setStylesheetParam("servlet-RemoteAddr",
new XString(request.getRemoteAddr())); // Update ctor -sc
}
catch (Exception e)
{
}
try
{
xslprocessor.setStylesheetParam("servlet-RemoteHost",
new XString(request.getRemoteHost())); // Update ctor -sc
}
catch (Exception e)
{
}
try
{
xslprocessor.setStylesheetParam("servlet-RemoteUser",
new XString(request.getRemoteUser())); // Update ctor -sc
}
catch (Exception e)
{
}
}