1 Introducing Oracle WebLogic Web Services
For definitions of unfamiliar terms found in this and other books, see the Glossary.
- Overview of WebLogic Web Services
You can access the Web services using standard Web protocols such as XML or HTTP. WebLogic Server supports the web service types such as Java API for XML-Based Web Services (JAX-WS) 2.3 and Java API for RESTful Web Services (JAX-RS). - How Do I Choose Between SOAP and REST?
In WebLogic Server, SOAP web services are implemented using JAX-WS and RESTful web services are implemented using JAX-RS. Follow the recommended guidelines to consider when choosing between SOAP and REST.
Overview of WebLogic Web Services
You can access the Web services using standard Web protocols such as XML or HTTP. WebLogic Server supports the web service types such as Java API for XML-Based Web Services (JAX-WS) 2.3 and Java API for RESTful Web Services (JAX-RS).
For an overview of web services and their benefits, see What Are Web Services? in Understanding Web Services.
Table 1-1 Types of WebLogic Web Services
Web Service Type | Description |
---|---|
Java API for XML-Based Web Services (JAX-WS) 2.3 |
The JAX-WS implementation in Oracle WebLogic Server is extended from the JAX-WS Reference Implementation (RI) developed by the Glassfish Community (see For more information about JAX-WS, see: |
Java API for RESTful Web Services (JAX-RS) |
WebLogic Server supports Jersey 2.x (JAX-RS 2.1 RI) by default in this release. Registration as a shared library with WebLogic Server is no longer required. For more information about JAX-RS, see:
|
Parent topic: Introducing Oracle WebLogic Web Services
How Do I Choose Between SOAP and REST?
In WebLogic Server, SOAP web services are implemented using JAX-WS and RESTful web services are implemented using JAX-RS. Follow the recommended guidelines to consider when choosing between SOAP and REST.
See also Features and Standards Supported by WebLogic Web Services for a comparison of the standards that are supported for JAX-WS and JAX-RS.
Table 1-2 How to Choose Between SOAP and RESTful Web Services
Use . . . | In the following scenarios . . . |
---|---|
SOAP |
Implement SOAP web services using JAX-WS in enterprise application integration scenarios that:
JAX-WS interoperates with other standards-based SOAP web services from Oracle or other SOAP web service vendors. JAX-WS supports the full set of WS-* protocols that provide standards for security, reliability, and so on, and better interoperates with other clients and servers that conform to the WS-* protocols. For more information about SOAP web service development, see Developing JAX-WS Web Services for Oracle WebLogic Server. |
REST |
Implement RESTful web services using JAX-RS to integrate services over the web when the constraints of the RESTful style are desirable, such as separate client-server architecture, uniform interface, and so on. For more information about RESTful web services development, see Developing and Securing RESTful Web Services for Oracle WebLogic Server. |
Parent topic: Introducing Oracle WebLogic Web Services