Possible Duplicate:
Lightweight servlet engine for serving java application via IIS
It is possible to run JSP files, let's say Struts 1, on IIS Server?
Thanks
Possible Duplicate:
Lightweight servlet engine for serving java application via IIS
It is possible to run JSP files, let's say Struts 1, on IIS Server?
Thanks
David Wang wrote a post on the MSDN blogs titled "How does JSP work on IIS?" that addresses why JSP can't be run directly under IIS 5.0 and 6.0. The short version is that IIS doesn't run any dynamic content directly, it requires an add-on for it (even ASP.Net). The article mentions a popular add-on to use for servlets is isapi_redirect, which shunts the request to Tomcat for handling (since isapi_redirect is an IIS add-on, IIS still handles communication with the client).