Overview of Weblogic Application Server

Ratings:
(4)
Views:0
Banner-Img
  • Share this blog:

WebLogic Server is based on Java 2 Platform, Enterprise Edition (J2EE), the standard platform used to create Java-based multi-tier enterprise applications. J2EE platform technologies were developed through the efforts of BEA Systems and other vendors in collaboration with the main developer, Sun Microsystems. It manages system-level details so you can concentrate on business logic and presentation.

The following are the various Weblogic Server versions released from 2002. The most recent version of Weblogic is 12c.

Weblogic Server Versions

WebLogic Server 12c Release 3 (12.1.3) - June 26, 2014

WebLogic Server 12c Release 2 (12.1.2) - July 11, 2013

WebLogic Server 12c Release 1 (12.1.1) - Dec 1, 2011

WebLogic Server 11gR1 PS5 (10.3.6) - February 26, 2012

WebLogic Server 11gR1 PS4 (10.3.5) - May 16, 2011

WebLogic Server 11gR1 PS3 (10.3.4) - January 15, 2011

WebLogic Server 11gR1 PS2 (10.3.3) - April 2010

WebLogic Server 11gR1 PS1 (10.3.2) - Nov 2009

WebLogic Server 11g (10.3.1) - Jul 2009

WebLogic Server 10.3 - Aug 2008

WebLogic Server 10.0 - Mar 2007

WebLogic Server 9.2

WebLogic Server 9.1

WebLogic Server 9.0 - Nov 2006

WebLogic Server 8.1 - Jul 2003

WebLogic Server 7.0 - Jun 2002

[button url="http://tekslate.com/weblogic-server-administration-training/" class="other" bg="" hover_bg="" size="0px" color="#f7f7f7" radius="0px" width="0px" height="0px" target="_self"] Oracle Weblogic Training [/button]

Weblogic Server Core Components

Oracle WebLogic Server supports Oracle, DB2, MS SQL Server, MySQL Enterprise and other JDBC-compliant databases. Oracle Weblogic Platform also includes:

  • Core Components like Enterprise Grid Messaging, JMS Messaging Standard, JRockit, Oracle Top Link, Oracle WebLogic Server Web Services, Tuxedo
  • Supported open standards like BPEL & BPEL-J, ebXML, JAAS, Java EE 1.3 & 1.4 & 5, JPA 1.0 (2.0 available), JMX and SNMP
  • Native support for: SOAP, UDDI, WSDL, WSRP, WS-Security, XSLT and XQuery

Standards support by version

The table below lists major standards supported by the WebLogic Server product version.

Standard WLS 7.0 WLS 8.1 WLS 9.0 WLS 10.0 WLS 10.3
Java 1.3 1.4 5 5 6
Java EE 1.3 1.3 1.4 5 5

Overview of WebLogic Server System Administration

System administration of WebLogic Server includes a wide range of tasks: creating WebLogic Server domains; deploying applications; migrating domains from development environments to production environments; monitoring and managing the performance of the run-time system, and diagnosing and troubleshooting problems. (A WebLogic Server domain is a collection of WebLogic Server services designed for a specific purpose. For example, you might create one domain to provide an employee portal and another domain to provide business services to your customers.)

Because the WebLogic Server management system is based on Java EE and other standards, it integrates with systems that are frequently used to manage other software and hardware components. Also, WebLogic Server includes several of its own standards-based, extensible utilities. Alternatively, you can use APIs to create custom management utilities.

At the end of this module you will be able to:

  • What are Software Component Tiers
  • The Web & Application Server and Differences
  • J2EE Platform and WebLogic Server
  • Weblogic Server Versions & Capabilities

Software Component Tiers

The software components of a multitier architecture consist of three tiers:

  • The client tier contains programs executed by users, including Web browsers and network-capable application programs. These programs can be written in virtually any programming language.
  • The middle tier contains WebLogic Server and other servers that are addressed directly by clients, such as existing Web servers or proxy servers.
  • The backend tier contains enterprise resources, such as database systems, mainframe and legacy applications, and packaged enterprise resource planning (ERP) applications.

Weblogic Server Component Tiers

[button url="http://tekslate.com/tutorials/weblogic-tutorials-how-to/" class="other" bg="" hover_bg="" size="0px" color="#f7f7f7" radius="0px" width="0px" height="0px" target="_self"] Oracle Weblogic Tutorials [/button]

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.

Understand that a Web server's delegation model is fairly simple. When a request comes into the Web server, the Web server simply passes the request to the program best able to handle it. The Web server doesn't provide any functionality beyond simply providing an environment in which the server-side program can execute and pass back the generated responses. The server-side program usually provides for itself such functions as transaction processing, database connectivity, and messaging.

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—features often erroneously assigned as features reserved only for application servers.

  • Provides Web content
  • Communicate via HTTP, FTP, etc
  • Can handle CGI requests

Proxy some requests to Application Servers

Weblogic Server

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. As a Web server, an application server may also employ various scalability and fault-tolerance techniques.

Weblogic Application Server

Application servers:

  • Provide services that support the execution and availability of deployed applications
  • Handle heavier processing chores than Web servers

Differences Between Application Server vs. Web Server

 What is it?

Application Server: A server that exposes business logic to client applications through various protocols including HTTP.

Web Server: A server that handles HTTP protocol.

Functions:

Application Server: To deliver various applications to another device, it allows everyone in the network to run software off of the same machine.

Web Server: 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.

Clients can include:

Application Server:  GUI’s, Web Servers

Web Server:  HTTP, HTML

Functionality:

Application Server:  Adds functionality

Web Server: Does not add any

Examples of popular server products:

Application Server:  Oracle OC4J(Oracle), Sybase Application server(Sybase), SAP Netweaver (SAP), Jboss (Red Hat), WebLogic Server (Oracle), WebSphere (IBM)

Web Server:  Microsoft IIS, Apache Tomcat

 J2EE Platform and WebLogic Server

 WebLogic Server J2EE applications are based on standardized, modular components. WebLogic Server provides a complete set of services for those modules and handles many details of application behavior automatically, without requiring programming.

J2EE includes deployment specifications for Web applications, EJB modules, Enterprise applications, client applications, and connectors. J2EE does not specify how an application is deployed on the target server—only how a standard module or application is packaged.

Java is platform independent, so you can edit and compile code on any platform, and test your applications on development WebLogic Servers running on other platforms. For example, it is common to develop WebLogic Server applications on a PC running Windows or Linux, regardless of the platform where the application is ultimately deployed.

Summary: 

  • Covered Software Component Tiers
  • Covered Overview and Differences of Web Server and Application Server
  • Overview of J2EE Platform and WebLogic Server
About Author
Authorlogo
Name
TekSlate
Author Bio

TekSlate is the best online training provider in delivering world-class IT skills to individuals and corporates from all parts of the globe. We are proven experts in accumulating every need of an IT skills upgrade aspirant and have delivered excellent services. We aim to bring you all the essentials to learn and master new technologies in the market with our articles, blogs, and videos. Build your career success with us, enhancing most in-demand skills in the market.