| Author |
HTTP Post Problem in j2me application
|
Priyanka Gawada
Greenhorn
Joined: May 08, 2012
Posts: 12
|
|
Hi have written a code which sends data from a midlet to the servlet using HTTP POST method.
When the HTTP GET method is used, data is received by the servlet, but with POST, it receives null.
What is the problem with the POST not able to find. Kindly help.
Here is the code of the midlet.
Here is the code of the servlet:
|
 |
Swastik Dey
Ranch Hand
Joined: Jan 08, 2009
Posts: 1195
|
|
Priyanka,
As far as my knowledge goes, getParameter works when the is data is sent through querystring or through request headers. But in this case as you are writing the data in outputstream at the midlet end, you have to read it from inputstream at the servlet end. I may be wrong on this but this my thought.
|
Swastik
|
 |
 |
|
|
subject: HTTP Post Problem in j2me application
|
|
|