문제

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