tags:

views:

112

answers:

4

can we host a java web application on IIS server

A: 

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.

Pablo Santa Cruz
A: 

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.

Ciaran Archer
its a j2ee project , and iis version is 5.1 on windows xp
+1  A: 

You can forward your requests from IIS to another local tomcat or other java application server.

BrennaSoft
So its not possible to host in iis??when and why we forward the request as we have the server running why cant we directly call it???
IIS is a web server. To run a java application you need a java application server like Tomcat. You can forward your requests from IIS to the Tomcat server but you might just want to dump IIS and use Tomcat.
BrennaSoft
A: 

IIS can never Java web-applications directly. But with a plugin we can do it..

You can refer this page.

venJava