Thanks for the response guys!
This is actually how I came across the problem. Using the same form, I use a GET method and was able to read all the value pairs. The ONLY thing I changed was the form method - changing it to a POST.
Sent to web server on a POST:
POST /loginprocess HTTP/1.1
Host: localhost:881
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
X-Requested-With: XMLHttpRequest
Referer: http://localhost:881/
Content-Length: 21
Cookie: SESSIONID=24973831
Pragma: no-cache
Cache-Control: no-cache
userid=33&password=33
Sent to web server on a GET:
GET /loginprocess?_dc=1331900230067&userid=ee&password=ee HTTP/1.1
Host: localhost:881
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip, deflate
Connection: keep-alive
X-Requested-With: XMLHttpRequest
Referer: http://localhost:881/
Cookie: SESSIONID=24973831
I do know that if I were using PHP I would hae to parse the POST before I could read the values. Any help would be appreciated. Thanks.