Apache with C # classes

Is there a way for apache to “pass through” the request that the C # application needs to “process”, allowing it to return specific content. I want to handle an intense amount of asynchronous apache calls through javascript and pass those calls through C # (as asp.net does). Has anyone successfully done this before? Any idea where to start looking?

Update :
Additional Information. I want to be able to process thousands of simultaneous asynchronous requests as quickly as possible, to write an interpretation agent in some kind of C # threaded application. I could be wrong, but I do not think that iis with asp.net is configured for this kind of thing (proof of concept would be wonderful).

I feel that something like apache is best suited. If this means the transition from something else to C # is ok at first, I think, but I would like to be more direct.

+6
c # apache webserver configure
source share
2 answers

Apache actually supports running C # libraries using mod mono . Alternatively, you can use CURL to send a C # web request running in IIS. Another way would be to open the server socket directly in C #, and apache (via php, python or some other scripting language) to connect to you with a C # application to process the request. I think you need to be more specific about what exactly you are trying to accomplish.

+1
source share

with apache2, you can run mod_aspdotnet

or if this suits you, run some URLs in proxy mode (pass them to another asp.net server) using mod_proxy

or a great solution for Kibbee

+1
source share

All Articles