I have found that until a form / action sequence is working, you should always use GET and using a text editor, decompose the query string. Many errors are obvious when looking at the request string.
Edgar -----Original Message----- From: Savantraj, Chennamakal Subramanian [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 8:44 PM To: 'Struts Users Mailing List' Subject: RE: intermitten missing field value when submit to a Struts action???? May look funny but pls check the spelling of method="post". We had this problem and later found that methd="post". Great possibility of overlooking this. -----Original Message----- From: Tuan H. Le [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 9:43 AM To: Struts Users Mailing List Subject: RE: intermitten missing field value when submit to a Struts action???? Todd, I'm using POST method in my form. Thanks, Tuan -----Original Message----- From: Todd Pierce [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 5:22 PM To: Struts Users Mailing List Subject: RE: intermitten missing field value when submit to a Struts action???? If you have something working consistently in one browser and consistently not in another, it's likely to be an HTML problem. Are you submitting with a GET or a POST method? If you're using GET, there's a known bug (fixed in IE 6) where parameter names can resolve to escape characters, e.g. /someul.do?param=123"e=456 will become /someul.do?param=123"e=456. Might be something to do with that? -----Original Message----- From: Tuan H. Le [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 3 December 2002 10:28 AM To: Struts Users Mailing List Subject: RE: intermitten missing field value when submit to a Struts action???? Edgar, Thanks for your replied. I also tried to set the action in a Struts form bean and I got the same result. It worked fine with IE 6.0. Thanks, Tuan -----Original Message----- From: edgar [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 3:25 PM To: 'Struts Users Mailing List' Subject: RE: intermitten missing field value when submit to a Struts action???? This doesn't sound like a browser issue. I would look elsewhere. Edgar -----Original Message----- From: Tuan H. Le [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 6:05 PM To: 'Struts Users Mailing List (E-mail)' Subject: intermitten missing field value when submit to a Struts action???? Hi, Has any one experienced a problem that I'm having with hidden input text field? I have two different IE browser versions (5.5 and 6.0). For the IE 6.0, it works fine when I get a hidden field value via (String)request.getParameter( "action" ); But, for IE 5.5 version with the same code, some times it returns a null value from the hidden field action. Thanks, Tuan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> ------------------------------------------------------------------- This email is confidential and intended only for the use of the individual or entity named above and may contain information that is privileged. If you are not the intended recipient, you are notified that any dissemination, distribution or copying of this email is strictly prohibited. If you have received this email in error, please notify us immediately by return email or telephone and destroy the original message. Thank you. - This mail is sent via Sony Asia Pacific Mail Gateway. ------------------------------------------------------------------- -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

