Вопрос

I would like to know whether asp.net applications can host in any non-IIS web/application server like Tomcat/JBoss/Glassfish?

Это было полезно?

Решение

If you want to deploy a JEE application (WAR, EAR) directly to IIS, the answer is no.

IIS can however act as front-server for a JEE server (Tomcat/JBoss/Glassfish) using the IIS connector. This means you need to have a running installation of Tomcat/JBoss/Glassfish; this will not be listening for connections from the outside world. Requests from the outside will hit IIS, which will forward them to Tomcat/JBoss/Glassfish.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top