简体   繁体   English

是否可以在 IIS 服务器中运行 asp.net 和 java web 应用程序?

[英]Is it possible to run asp.net and java web applications in the IIS server?

I need to run the ASP.NET application and JAVA WEB application in a single web server.我需要在单个 Web 服务器中运行 ASP.NET 应用程序和 JAVA WEB 应用程序。 Because, These two apps are co-ordinate and work as a single application to the client end.因为,这两个应用程序是协调的,并且作为客户端的单个应用程序工作。 Pls help me.请帮助我。

Use url rewrite to make asp.net (IIS) as proxy server for specific mapping.使用 url rewrite 使 asp.net (IIS) 作为特定映射的代理服务器。 For example:例如:

  <system.webServer>
            <rewrite>
            <rules>
                <rule name="Reverse Proxy to webmail" stopProcessing="true">
                    <match url="^example_endpoint/(.*)" />
                    <action type="Rewrite" url="http://localhost:8080/example_endpoint/{R:1}" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>

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

相关问题 在非IIS服务器中的ASP.NET Web应用程序? - Asp.net web applications in non-IIS server? 是否可以从上次成功构建IIS服务器应用程序池(生产)中运行Asp.net Web应用程序(Web窗体应用程序) - Is it possible to run an Asp.net web application (web forms app) from last successful build in IIS server app pool (production) 是否可以在IIS 7.5中运行ASP.NET而无需创建虚拟目录或应用程序? - Is it possible to run ASP.NET in IIS 7.5 without creating Virtual Directories or Applications? 在IIS7中集成2个ASP.NET Web应用程序 - Integrate 2 ASP.NET web applications within IIS7 DNS服务器在IIS上运行ASP.NET Web应用程序的必要性是什么? - How necessary is DNS Server to run an ASP.NET web app on IIS? 为什么asp.net需要IIS(Internet信息服务)来运行Web服务器? 这在nodejs中如何工作? - Why asp.net needs IIS(Internet Information Services) to run web server? How this works in nodejs? ASP.NET Web应用程序 - Asp.net web applications 没有IIS的asp.net应用程序运行 - asp.net applications running without IIS ASP.NET Web应用程序中的SQL Server会话模式 - Sql server session mode in asp.net web applications IIS和ASP.Net Web开发服务器之间的行为差​​异? - Differences in behaviour between IIS and the ASP.Net Web Development Server?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM