I've hit what looks like a bug when using <jsp:getProperty> with jswdk-1.0-ea. If the corresponding <jsp:useBean> tag specifies a type rather than a class it causes the JVM to crash. Thus something like <!-- problem.jsp - illustrate a problem --> <jsp:useBean id="test" scope="request" type="MyClass" /> <jsp:getProperty name="test" property="myProperty" /> elicits the problem. It does seem to be getProperty that is the problem ... <!-- noproblem.jsp - this works --> <jsp:useBean id="test" scope="request" type="MyClass" /> <%= test.getMyProperty() %> works as expected - and is how I have worked around the problem. I reported this a few days ago to [EMAIL PROTECTED] - not sure what the proper channel is, so I'm repeating it here. John Holman QMW Computing Services Tel: 0171-975 5323 =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JSP-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
