Hello,

I've created struts forms before with no problems, and have been working
with them for over a year, and I'm suddenly having a horrible time creating
a small test form, and I have no idea what I'm missing.  The error that I'm
getting is completely unhelpful:

javax.servlet.jsp.JspException: null

I've been able to debug and know that the error is occuring when doing the
lookup() method in the doStartTag() method of the form tag.  It's like it's
not able to bring in the struts-config?

I feel like I've done everything possible to strip this down to the most
basic form possible, and I'm ripping my hair out trying to figure out what's
happening.

Here's my struts-config:

        <form-beans>
                <form-bean name="MyForm" type="com.jaj.test.ContactUsTestForm"/>
        </form-beans>
        <action-mappings>
                <action path="/test" type="com.jaj.test.ContactUsTestAction" 
                name="MyForm" scope="session" input="/contactTest.jsp">
                        <forward name="success" path="/contactTest.jsp" 
redirect="true"/>
                </action>
        </action-mappings>

Here's my jsp:

                <html:form action="/test" >
                <html:submit>
                        Submit
                </html:submit>
                </html:form>

I can't make it any easier!  Anyone have any suggestions?

Thanks,
Jennifer

-- 
View this message in context: 
http://www.nabble.com/JspException%3A-null-in-doStartTag%28%29-of-form-tag-tf2371322.html#a6606195
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to