post data streams

I am stuck.

I am supposed to get from an outside source POST data to a URL

It is apparently in a stream.

The parameters are all there (because it doesn't blow up?) but the data is always null.

Within the application POSTs and GETs work, when I try to run the URL with

www.myURL,com/catUpd.jsp?test=xxxx

I can get the parameter value

The supplier suggested

String myInput = request.getReader().readLine();

this didn't help

Can anyone explain the request.getReader

to me?

Can the problem be a security setting ?

Any suggestions

Lena

[629 byte] By [LenaBa] at [2007-11-27 7:52:34]
# 1
To get the parameter "test" from the GET request, use:request.getParameter("test");For example:String myInput = request.getParameter("test");// myInput will contain xxxx
kaderuda at 2007-7-12 19:33:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Been there, done that have a t-shirt with all the possible combinations of GET and POST. They all work except for this combination. Even tried a servlet instead of a jsp page.

They are POST *** "a Stream" according to them. When this "stream" is on I can't get any cookies off the client either.

Lena

LenaBa at 2007-7-12 19:33:47 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...