• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

IIS and Apache Tomcat

 
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IIS serves asp pages and apache serves jsp pages. What about html pages, can these servers serve other pages like html, xhtml ?

Apache is compatible for Tomcat application server. Is IIS compatible with Tomcat ? If not, then what application server is compatible with IIS ?

I am confused with these two servers. Please explain thoroughly

thanks
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
All servers (IIS, Apache httpd, Apache Tomcat) can serve static files.

(Almost) Everything you need to know about integrating Tomcat with other servers can be found at http://tomcat.apache.org/connectors-doc/index.html
 
Ranch Hand
Posts: 378
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IIS is an HTTP server.

The Apache web server is an HTTP server.

An HTTP server is able to serve HTML and XHTMl among other content types.

IIS either supports ASP processing out of the box or as an official extension.

Apache Tomcat is primarily a JSP/Servlet container and also doubles up as an HTTP server.

Looks like there is an IIS plugin for Apache Tomcat. (Google for "iis tomcat plugin"). So you could use the HTTP capability of IIS in combination with JSP/Servlet processing capabilities of Apache Tomcat.

There is an Apache Tomcat module for the Apache Web server called mod_jk. So you can use the HTTP capability of the Apache web server in combination with JSP/Servlet processing capabilities of Apache Tomcat.

Finally, If there's an IIS plugin I guess any java application server can be considered compatible with IIS.

Hope this clears things up a bit further..
 
reply
    Bookmark Topic Watch Topic
  • New Topic