Changed 'private String msg' to private String Msg' Result is the same. I guess it doesn't matter for private fields.
Andrew:
The beans spec says that property 'something' will be addressed through a
getter method 'getSomething()' (note capitalization of 's'). So your getter
method 'getMsg()' is referring to a property 'msg', not 'Msg'. Yes, when
you capitalize 'Msg' you'll get 'Msg', but when Jasper does the
introspection on your bean, it interprets the methods to get 'msg', hence
"Cannot find any information on property 'Msg'..."
Change to <jsp:getProperty name='dbean' property='msg'/> and you should be
fine.
Best of luck,
Greg Trasuk, President
StratusCom Manufacturing Systems Inc. - We use information technology to
solve business problems on your plant floor.
http://stratuscom.ca
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
