> I'm having a problem with html:form input values not > populating my ActionForm. I can get it to work if I > invalidate() the session immediately prior to populating the > form and submitting, or consistantly by using get rather than post.
I'd guess a problem in struts-config.xml. The "action" attribute of your <html:form...> tag must refer to a something that's in the "path" attribute of an "action" element in your struts-config.xml file. The "name" attribute of that element tells Struts which form bean to construct when the form is submitted. > It appears that the form values when posted are not added as > parameters to the request, or at least I cant see them. Now that's extremely strange. The browser is supposed to make sure this happens for every item of a form that has a "name" attribute. Remember that the args are only visible to you on a "get" request. If you're making a "post" - which is the default for the <html:form...> tag, you can't see them in the URL. -- Tim Slattery [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

