Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
是否可以在IIS服务器中运行asp.net和java web应用程序?_Asp.net_Tomcat_Iis_Webserver - Fatal编程技术网

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

是否可以在IIS服务器中运行asp.net和java web应用程序?,asp.net,tomcat,iis,webserver,Asp.net,Tomcat,Iis,Webserver,我需要在单个WEB服务器中运行ASP.NET应用程序和JAVA WEB应用程序。因为,这两个应用程序是协调的,可以作为客户端的单个应用程序工作。请帮助我。使用url重写将asp.net IIS用作特定映射的代理服务器。例如: <system.webServer> <rewrite> <rules> <rule name="Reverse Proxy to webmail"

我需要在单个WEB服务器中运行ASP.NET应用程序和JAVA WEB应用程序。因为,这两个应用程序是协调的,可以作为客户端的单个应用程序工作。请帮助我。

使用url重写将asp.net IIS用作特定映射的代理服务器。例如:

  <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>