I set up my application's configuration data in an XML file, using JDOM to read it and populate a DynaBean with properties and values. I used a DynaBean because options can be added or deleted by the deployment site administrator. The DynaBean is then stored in application scope.
I have no problem accessing properties of this bean in Java code, but how do I access them in a JSP without resorting to scriptlets? Is there an equivalent of <jsp:useBean id="myBean" scope="application" class="com.bean.myBean" /> for use with a DynaBean? Do I need to re-think my approach here? Greg -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

