• 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

What Do we need Appserver?

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,

Can you please tell me point me / tell me when and why do we need appserver?

What is the exact functionality of it?

If I am using jsp + servlet then do I need it?

If the concept of appserver is specific to java platform ?

What are the current leading appervers etc etc?


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

App server which is used to deploy the components(EJB) and also web componenets(JSP,SERVLTES)

Web server which is used to deploy only the JSP and Servlets
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Hrishitesh,

You can refer this thread for more information.

- John
 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
maybe you should investigate web pages of major app servers like websphere or weblogic.
They may detailed info for their features but mainly

they provide a container for your apps to live in.In the case of EJBs, they handle the life cycle management, threading,pooling,session mngmt..any many more.

In your case(JSP+Servet) a web server with a servlet engine plugin works.
Since you don't need the EJB container,you need the servlet engine.
Apache Tomcat is a free servlet engine and very stable.You can use it on production environment.
[ February 09, 2005: Message edited by: Ulas Ergin ]
 
The government thinks you are too stupid to make your own lightbulb choices. But this tiny ad thinks you are smart:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic