Thursday, 31 May 2018

Websphere Basics

Questions & Answers
1. What is master repository?

A. Deployment manager contains the MASTER configuration and application files.
   All updates to the configuration files should go through the deployment manager.

2. What about IHS?

A. IHS (IBM HTTP Server) is one of the web servers.
   It serves the static content only and it takes up only http requests.

3. What about plug-in?

A. Plug-in is one of the modules it is interface between application server and web server,
   the plug-in process receives the request from the client first.
   If the request is for dynamic content,
   the plug-in diverts the request to the websphere application server.
   If the request is for static content,
   the plug-in forwards it to the Http server.

4. What is SSL?

A. ssl(secure socket layer) is a protocol for providing encrypted data communications between two processes.

5. What is the difference between web server and application server?

A. Application Server: takes care of Security, Transaction, Multithreading, Resource pooling,
   load balancing, clustering, performance, highly availability, scalability, etc.
   Exposes business logic to client applications through various protocols, possibly including HTTP.
   Supports deployment of .war and .ear files Application server = web server + EJB container.


6. Diff b/w weblogic and websphere?

A. Both BEA Weblogic and IBM’s WebSphere provide J2EE based application servers which are competitors.
   WebSphere leverages more on connectivity issues with MQ and legacy systems with strong dominance in J2EE.