Parsing an HTTP request

  • Thread starter Thread starter DLOC
  • Start date Start date
D

DLOC

Hi all,

I am building a small web server proxy and am wondering if there is an HTTP
request parser that I can leverage from the .NET Framework in C#. The goal
would be to pass in a raw request stream and obtain formatted request
fields. Any help is appreciated, thank you.
 
DLOC said:
I am building a small web server proxy and am wondering if there is an HTTP
request parser that I can leverage from the .NET Framework in C#. The goal
would be to pass in a raw request stream and obtain formatted request
fields. Any help is appreciated, thank you.

You want to parse POST headers? Or the params in a GET URL?

Indy has support for both:
http://www.indyproject.org/indy.html

Its also free.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
 
Hi

What you want to do can be done by .NET Framework. I had read something
about this from msdn. But so sorry for I don't remember the address. I think
you can find it from msdn.
 
Back
Top