Hi again,
Well, a Console application won't cut it, as it will only run like a console application. I don't think you can tell IIS or any other Web server to redirect requests to the console.
What you probably need to create is your own custom HttpHandler that can run as an ISAPI extension . You can configure IIS applications to redirect requests to your HttpHandler, allowing you to bypass or enhance the ASP.NET functionality.
A while ago I created an HttpHandler to build a more powerful redirector that redirected Web sites to another server, while maintaining QueryString variables and logging the redirects. It was as easy as inheriting the right classes / implementing interfaces, and adding a few lines of code.
Here's the MSDN start page for HttpHandlers:
http://msdn.microsoft.com/library/de...asp?frame=true
Another interesting article:
http://www.15seconds.com/issue/020417.htm
Searching Google for HttpHandlers .NET will give you quite some interesting results.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.