Hi there,
I have an http/post request coming in as the following format.
Is there a way I can get the text data into a string. The only thing with this is that the data is not associated with a variable name (when we use a form to post to the jsp), but sending a raw http request.
If its from a form, I am able to use teh request.getParameter to get the data I need.
Any help on this is appriciated.
I have an http/post request coming in as the following format.
Code:
protohttp: sending request:
POST /admintool/log.jsp HTTP/1.1
Host: dirtysock2.ea.com
Content-Length: 11672
Connection: Close
User-Agent: Custom/1.1
Accept: */*
text data follows here
.
.
.
.
.
Is there a way I can get the text data into a string. The only thing with this is that the data is not associated with a variable name (when we use a form to post to the jsp), but sending a raw http request.
If its from a form, I am able to use teh request.getParameter to get the data I need.
Any help on this is appriciated.