Eb Ogic: History of Weblogic
Eb Ogic: History of Weblogic
History of WebLogic
HISTORY
WebLogic Inc started in 1995 was a company
credited with creating the first J2EE application
server, the WebLogic Application Server.
—BEA Systems acquired WebLogic, Inc in 1998.
—Oracle Corporation acquired BEA Systems in
2008.
BEA WEBLOGIC
* WebLogic Integration,
* WebLogic/Tuxedo Connector
* COM+ Connectivity
* CORBA connectivity
lighttpd. ...
Jigsaw Server.
ROLE OF WEB SERVER
The primary function of web server is to store,
process and deliver web pages to clients.
The communication between client
and server takes place using the Hypertext
Transfer Protocol (HTTP).
WEBLOGIC -INTRODUCTION
WebLogic Definitions:
WebLogic is a J2EE application server and also an HTTP
web server by Oracle , for Unix, Linux, Microsoft Windows,
and other platforms.
WebLogic supports Oracle, DB2, Microsoft SQL Server, and
other JDBC-compliant databases.
Deploying applications,
Configuration of webserver,
Managing transactions,
JDBC security,
two types:
1. session beans and
2. entity beans.
SESSION BEANS
Session beans are enterprise beans that are suitable
for processing or workflow.
Session beans come in two flavors: stateful and
stateless. A stateful session bean retains client state
between method invocations.
A stateless session bean does not retain client-specific
state between client-invoked methods.
Stateless session beans are used when no state needs
to be stored between method invocations, and they
may offer performance benefits over stateful session
beans, which must be used when some state needs to
be retained between invocations.
Session bean instances pertain to a single user
session and are not shared between users.
ENTITY BEANS
Entity beans are used when a business component needs
to be persisted and shared among multiple users.
Entity bean persistence can be managed in two ways: