WebLogic Tutorial

Ratings:
(4.7)
Views:1438
Banner-Img
  • Share this blog:

Welcome to the Weblogic Tutorial. The objective of these tutorials is to provide an in-depth understanding of the Weblogic Application Server.

In addition to free Weblogic Tutorials, we will also cover common interview questions, how-to tutorials and issues and their resolutions of Weblogic Application Server

 WebLogic Tutorial - Table of Contents

What is WebLogic Server?

Weblogic Server is a sort of server that backings different administrations and in addition find that are connected with JEE applications. WebLogic server is fit for conveying segments and in addition applications through WSDL, UDDI, and SOAP.

A Weblogic server gets designed as a web server by making utilization of HTTP audience for supporting the HTTP. Web servers like that of Apache, Netscape, and Microsoft are utilized.  The design of a web server permits WebLogic is fit for giving administrations to dynamic and static demands that are normally produced by servlets, HTML, and JSP.

Weblogic Server is a software product that acts as a liaison between the front end and back end applications. Weblogic Application Server is widely used for its JMS capabilities. Later in these sessions, we will learn in detail about Weblogic Installation, Security, JMS, and Clustering.

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

Oracle 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

Want to acquire industry skills and gain complete knowledge of WebLogic? Enrol in Instructor-Led live WebLogic Training to get Job Ready!

Use of the WebLogic Server

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.

WebLogic 12c

Oracle WebLogic Server 12c R2 is the industry's best application server for building and deploying enterprise Java EE applications with support for new features for lowering the cost of operations, improving performance, enhancing scalability, and supporting the Oracle Applications portfolio.

Use of the Domain in WebLogic

A WebLogic Domain is a logically related group of WebLogic Server instances (Admin + managed Servers)that you manage from a single set of configuration artefacts. A Weblogic Domain contains exactly one Administration Server and zero or more than zero managed Servers.
 
WebLogic Server 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 Supported 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

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; 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. In addition, 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 is Software Component Tiers
  • The Web & Application Server and Differences
  • J2EE Platform and WebLogic Server
  • Weblogic Server Versions & Capabilities
  • Weblogic Server Tutorial

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 Tutorial - WebLogic Component Tiers

Checkout Our Blog on WebLogic JDBC

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 oftentimes 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 Tutorial - WebLogic Web 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 travelling 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.

Weblogic Tutorial - WebLogic Application Server

Application servers:

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

Checkout: [ WebLogic Server Installation ]

Application Server Vs Web Server

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

Checkout Our Blog on Work Managers in WebLogic

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.

Weblogic Tutorial Summary: 

  • Covered Software Component Tiers
  • Covered Overview and Differences of Web Server and Application Server
  • Overview of J2EE Platform and WebLogic Server

Our course design of tutorials is practical and informative. At TekSlate, we offer resources to help you learn various IT courses. We avail of both written material and demo video tutorials. For in-depth knowledge and practical experience explore Online WebLogic Training.

 

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.