On Donnerstag, Januar 30, 2003, at 07:47 Uhr, Mark H wrote:
I'm trying to pass parameters to an XSP but I'm getting an exception:
unreported exception:
org.apache.avalon.framework.parameters.ParameterException; must be
caught or
declared to be thrown
I saw a similar post in the archives but
Mark -
Yup, you do. I use something like:
String myparam = "";
try {
myparam = parameters.getParameter("myparam");
} catch (Exception e) { }
Make sure it comes AFTER the root user tag in your XSP.
Regards,
Lajos
Mark H wrote:
I'm trying to pass parameters to an XSP but I'm ge
I'm trying to pass parameters to an XSP but I'm getting an exception:
unreported exception:
org.apache.avalon.framework.parameters.ParameterException; must be caught or
declared to be thrown
I saw a similar post in the archives but when I tried the recommended
solution it still didn't work, any i