I'm not a java to c# expert.
However,....
Check this:
http://msdn.microsoft.com/en-us/library/ms227673.aspx
Custom Http Module
Off the top of my head, that is a "server side" thing that allow me to look
at the incoming request
and then:
WCF allows its coded to be exposed as a WSHttpEndPoint WebService.
http://sholliday.spaces.live.com/Blog/cns!A68482B9628A842A!158.entry
Check that, and you'll have to make some changes to get WSHttpEndPoint to
work.
"Gilbert" <(E-Mail Removed)> wrote in message
news:PZGLk.89399$(E-Mail Removed)2...
> Apologies if I'm posting this to the wrong group. I want to know if it
> possible to emulate Java servlet functionality in C# and .net. What I want
> to do is to be able to do is create a C# program that sits listens for an
> HTTP request to a specific URL and then access the C# equivalent of the
> HTTPServletRequest object so I can access the request parameters directly.
> I've googled and found out about the WebClient - what I want is the
> converse, something that sits on the webserver.
>
> I'm sure that it must be possible but as a newbie I'm not sure of the
> correct C# & .Net terminology yet to be able to effectively google for
> what
> I want.
>
> Regards