appserver and web server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SAIRAAM
    New Member
    • Feb 2007
    • 45

    appserver and web server

    what is the difference between the app server and web server?

    which is best?and why?

    can anybody give a real time example of these two servers for understanding purpose?

    pls reply as if u r replyig for a lay man............ .so that anybody can understand.kind ly dont mistake me.

    waiting for a reply as soon as possible.
  • SAIRAAM
    New Member
    • Feb 2007
    • 45

    #2
    appserver and web server

    why is that appserver talks more about business logic?is it like web server does not perform any business logic ?if so,what does the web server do?

    what is it in appserver which is making it a super set of web server?give real time examples.

    Comment

    • RedSon
      Recognized Expert Expert
      • Jan 2007
      • 4980

      #3
      Please do not double post.

      Comment

      • sateesht
        New Member
        • Apr 2007
        • 41

        #4
        A Web server exclusively handles HTTP requests, whereas an application server serves business logic to application programs through any number of protocols.

        The Web server:

        A Web server handles the HTTP protocol. When the Web server receives an HTTP request, it responds with an HTTP response, such as sending back an HTML page. To process a request, a Web server may respond with a static HTML page or image, send a redirect, or delegate the dynamic response generation to some other program such as CGI scripts, JSPs (JavaServer Pages), servlets, ASPs (Active Server Pages), server-side JavaScripts, or some other server-side technology. Whatever their purpose, such server-side programs generate a response, most often in HTML, for viewing in a Web browser.

        While a Web server may not itself support transactions or database connection pooling, it may employ various strategies for fault tolerance and scalability such as load balancing, caching, and clustering—feat ures oftentimes erroneously assigned as features reserved only for application servers.

        The Application server:

        As for the application server, according to our definition, an application server exposes business logic to client applications through various protocols, possibly including HTTP. While a Web server mainly deals with sending HTML for display in a Web browser, an application server provides access to business logic for use by client application programs. The application program can use this logic just as it would call a method on an object (or a function in the procedural world).

        Such application server clients can include GUIs (graphical user interface) running on a PC, a Web server, or even other application servers. The information traveling back and forth between an application server and its client is not restricted to simple display markup. Instead, the information is program logic. Since the logic takes the form of data and method calls and not static HTML, the client can employ the exposed business logic however it wants.

        In most cases, the server exposes this business logic through a component API, such as the EJB (Enterprise JavaBean) component model found on J2EE (Java 2 Platform, Enterprise Edition) application servers. Moreover, the application server manages its own resources. Such gate-keeping duties include security, transaction processing, resource pooling, and messaging. Like a Web server, an application server may also employ various scalability and fault-tolerance techniques.


        Cheers,
        Sateesh.

        Comment

        Working...