HttpRequest Stream

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

Does anyone know how to get the whole request stream when data is posted to
a web page? I need the HTTP Headers as well in the InputStream when
receiving the data into my web page. I know I can get the HTTP headers from
the collection but I would like to get the stream as a single item.

Thanks,

Matt
 
Matt said:
Does anyone know how to get the whole request stream when data is
posted to a web page? I need the HTTP Headers as well in the
InputStream when receiving the data into my web page. I know I can
get the HTTP headers from the collection but I would like to get the
stream as a single item.

Use HttpRequest.InputStream, but this only lets you read the request's body,
not the complete HTTP message.

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top