简体   繁体   English

在非IIS服务器中的ASP.NET Web应用程序?

[英]Asp.net web applications in non-IIS server?

我想知道asp.net应用程序是否可以托管在任何非IIS Web /应用程序服务器(例如Tomcat / JBoss / Glassfish)中?

If you want to deploy a JEE application (WAR, EAR) directly to IIS, the answer is no. 如果要将JEE应用程序(WAR,EAR)直接部署到IIS,答案是否定的。

IIS can however act as front-server for a JEE server (Tomcat/JBoss/Glassfish) using the IIS connector . 但是,IIS可以使用IIS连接器充当JEE服务器(Tomcat / JBoss / Glassfish)的前端服务器。 This means you need to have a running installation of Tomcat/JBoss/Glassfish; 这意味着您需要正在运行的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. 来自外部的请求将到达IIS,IIS将把它们转发到Tomcat / JBoss / Glassfish。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM