Can we host a Java EE web app开发者_如何学JAVAlication on IIS 5.1 server on windows XP?
You can forward your requests from IIS to another local tomcat or other java application server.
You can install your Application Server into the same machine as the IIS server. Then use AJP to connect IIS to your Java APPServer.
But I don't think you will be able to run Java Applications directly from IIS only.
AFAIK Java EE cannot be hosted in IIS. To host Java EE Application you need at least Servlet container or a full Java EE container which is not supported by IIS. Although, some plugin might be able to do so.
As for your reference, below link is Java EE compatibility by oracle: http://www.oracle.com/technetwork/java/javaee/overview/compatibility-jsp-136984.html
IIS can never Java web-applications directly. But with a plugin we can do it..
You can refer this page.
Absolutely you can. If you need further info you'll have to provide more info about the type of Java application you wish to use, and the version of IIS.
精彩评论