Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Mono run under IIS 7?

Tags:

.net

mono

Why would Mono not being able to run under IIS 7 ?

Update: what prevent to develop an ISAPI for that purpose ?

like image 655
user310291 Avatar asked Dec 21 '22 21:12

user310291


1 Answers

Mono does not run under IIS 7 because Mono does not have an ISAPI module that implements the right API to interact with IIS 7.

UPDATE: In regards to your question about what prevents you from developing an ISAPI module to do that? Nothing, really. Mono has a good embedding API that you could easily consume from C/C++. My guess is, the reason nobody has done it is because there is not much of a need to do it.

like image 126
Bojan Rajkovic Avatar answered Jan 08 '23 19:01

Bojan Rajkovic