4

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

Community
  • 1
  • 1
CristiC
  • 192
  • 1
  • 2
  • 12
  • possible duplicate of [Lightweight servlet engine for serving java application via IIS](http://stackoverflow.com/q/1344289/), [Running a java web application in IIS](http://stackoverflow.com/q/2256084/) – outis Jul 14 '12 at 21:30
  • Here is a description of how to use IIS with Tomcat to accomplish this: [Tomcat IIS HowTo](http://tomcat.apache.org/tomcat-3.3-doc/tomcat-iis-howto.html) – kmote Oct 10 '12 at 15:52

2 Answers2

5

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

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
anil
  • 961
  • 1
  • 11
  • 23
0

Not without a servlet/JSP engine of some kind.

duffymo
  • 305,152
  • 44
  • 369
  • 561