Hello, We are using Struts 1.2.4, and Weblogic 8.1.
The problem is as follows - One of the action mappings in my struts-config.xml is - <action path="/sampleAction" type="com.action.carrier.SampleAction" name="sampleActionForm"> </action> The "sampleActionForm" corresponds to an entry in <form-beans> as follows <form-bean name="sampleActionForm" type=" com.web.struts.form.carrier.SampleActionForm" /> The class SampleActionForm has a single variable with the appropriate setter and getter namely public void setCarrierName(String carrierName) public String getCarrierName() The JSP that correponds to this action has entries as follows - <html:form action = "sampleAction"> <html:text property="carrierNam" value=""> </html:text> <input type = "button" value = "Save" class = "contenttext" onClick = "saveChangeCarrier()"/> </html:form> Please note that the property "carrierNam" has been deliberately misspelt. The SURPRISING thing is that struts does not throw any errors at all when forwarding to this page. I am sure I am missing something.... We have many JSPs like this but only this one seems to be having this problem... Any pointers on what could be the problem ????? Thanks and Regards, Pradeep