• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

websphere questions

 
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what webserver is used with websphere ?
IS websphere compatible to be used to ASP and JSP both ?
As Apache-Tomcat can not be used for ASP and IIS can be used only for ASP, are there any restrictions with websphere ?

Thanks
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by jignesh soni:
what webserver is used with websphere ?


WebSphere Application Server (WAS) has an internal proprietary web server. However, when you buy WebSphere Application Server, you also get a license to IBM HTTP Server (IHS) which is basically just the Apache HTTP Server with a few enhancements. In a production environment, you would normally have IHS running on port 80 as the main interface with the user and then a plugin for IHS forwards any dynamic requests to the WAS server.

Originally posted by jignesh soni:
IS websphere compatible to be used to ASP and JSP both ?


No, it isn't. WAS is a Java application server and therefore only serves JSPs.

Originally posted by jignesh soni:
As Apache-Tomcat can not be used for ASP and IIS can be used only for ASP, are there any restrictions with websphere ?


As stated above, WAS cannot be used to serve ASP. One difference between WAS and Apache-Tomcat is that WAS can serve EJBs, where Apache-Tomacat cannot.
 
jignesh soni
Ranch Hand
Posts: 155
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks, this clarification helps a lot.

Do you have the details about WebLogic for the same questions ?
If yes, can you please provide those details.

Thanks again
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually, WebSphere ships with plugins for a number of web servers, including straight Apachee, IIS, and Sun's Java System Web Server. As far as I know, *NO* J2EE application server would run ASP's -- ASP's are unique to Microsoft's technology and only run on IIS.
 
A timing clock, fuse wire, high explosives and a tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic