Hi all, I'm using NTLM authentication to let the user in. After the user gets into the application, he'll be shown a jsp page, which typically contains an <html:form action="query">. After user enters his inputs and submits the form, the values are not submitted as part of the HTTP Request. If I modify the form as, <html:form action="query" method="GET"> , then everything works fine i.e the values are being passed to the action class. If I remove the NTLM authentication in the first login jsp page, then <html:form> works fine with POST method. So, I feel that this is some issue pertaining to the use of <html:form> in conjunction with NTLM authentication. Did any one of you had experienced this problem? Why the input values entered by user are not passed as part of HTTP request? I can see the Content-Type of the request as, application/x-www-form-urlencoded. Everything looks fine. That's what baffling me. I'm in urgent need of it. I would really appreciate your help.
Thanks, Tarun.