First of all Inner classes inside JavaBeans conforms with the Java beans specification right? Second, I want to be able to use the inner class of a bean that is itself a bean. Is there any way to use JSP tags to set the properties of that inner class. For example this is kind of what I am trying to do but obviously it doesn't work as is. I want to keep the class as an inner class because it is only used within its containing class and it's declaration is very appropriate for its use. thanks for any advice. <jsp:useBean id="ref" scope="application" class="creapplication.sections.ReferralInformation" /> <jsp:setProperty name="ref" property="*" /> <jsp:useBean id="patData" class="creapplication.sections.ReferralInformation$PatientData" /> <jsp:setProperty name="patData" property="*" /> Zach Hensley Programmer Analyst ValueOptions, Inc. 757-459-5332 [EMAIL PROTECTED] =========================================================================== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.html http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
