Monday, December 2, 2013

Web Logic, Web Server and Application server question & answers


Web Logic?

Ans:  BEA Systems' Web Logic is a server software application that runs on a middle tier, between back- end databases and related applications and browser-based thin clients. 

Web Logic is a leading e-commerce online transaction processing (OLTP) platform, developed to connect users in a distributed computing environment and to facilitate the integration of mainframe applications with distributed corporate data and applications.


What is Application server and Web server?


Application Server:  An application server exposes a business logic to the client applications through various protocals including HTTP.

Web Server: Web server mainly deals with sending HTML for dispaly in web browser.

a web serever exclusively handles HTTP requests.

Edit this comparison chart

Application Server

Web Server

IntroductionAn application server is a software framework that provides an environment in which applications can run, no matter what the applications are or what they do.Web server can refer to either the hardware (the computer) or the software (the computer application) that helps to deliver content that can be accessed through the Internet.
What is it?A server that exposes business logic to client applications through various protocols including HTTP.A server that handles HTTP protocol.
JobApplication server is used to serve web based applications and enterprise based applications(i.e sevlets, jsps and ejbs...). because application server contains web server internally.Web server is used to serve web based applications.(i.e servlets and jsps)
FunctionsTo deliver various applications to another device, it allows everyone in the network to run software off of the same machine.Keeping HTML, PHP, ASP etc files available for the web browsers to view when a user accesses the site on the web, handles HTTP requests from clients.
Examples of popular server productsSun Java Application server, weblogic server, Apache Geronimo, IBM WebSphere Application Server, Glass Fish ServerApache, Microsoft IIS, Tomcat, Jetty
Clients can includeGUI’s, Web ServersWeb browsers, search enginerobots
Adds Functionality?YesNo, does not add any functionality.

No comments:

Post a Comment

TestNG - Can i use the 2 different data providers to same @test methods in TestNG?

public Object [][] dp1 () { return new Object [][] { new Object [] { "a" , "b" }, new Obje...