Overview of Web Service Provider-based Endpoints and Dispatch Clients
16.1 Overview of Web Service Provider-based Endpoints and Dispatch Clients
Although the use of JAXB-generated classes is simpler, faster, and likely to be less error prone, there are times when you may want to generate your own business logic to manipulate the XML message content directly. Message-level access can be accomplished on the server side using Web service Provider-based endpoints, and on the client side using Dispatch clients. A Web service Provider-based endpoint, implemented using the javax.xml.ws.ProviderT interface, offers a dynamic alternative to the Java service endpoint interface SEI-based endpoint. Unlike the SEI-based endpoint that abstracts the details of converting between Java objects and their XML representation, the Provider interface enables you to access the content directly at the XML message level—without the JAXB binding. The steps to develop a Web service Provider-based endpoint are described in Section 16.3, Developing a Web Service Provider-based Endpoint. . For more information about the javax.xml.ws.ProviderT interface, see http:download.oracle.comjavaee5apijavaxxmlwsProvider.ht ml . A Web service Dispatch client, implemented using the javax.xml.ws.DispatchT interface, enables clients to work with messages at the XML level. The steps to develop a Web service Dispatch client are described in Section 16.4, Developing a Web Service Dispatch Client . For more information about the javax.xml.ws.DispatchT interface, see http:download.oracle.comjavaee5apijavaxxmlwsProvider.ht ml . Dispatch clients and Provider endpoints can be used in combination with other WebLogic Web services features as long as a WSDL is available, including: ■ WS-Security 16-2 Programming Advanced Features of JAX-WS Web Services for Oracle WebLogic Server ■ WS-ReliableMessaging ■ WS-MakeConnection ■ WS-AtomicTransaction16.2 Usage Modes and Message Formats for Operating at the XML Level
Parts
» Oracle Fusion Middleware Online Documentation Library
» Roadmap for Developing Web Service Clients
» Roadmap for Developing Asynchronous Web Service Clients
» Overview of Asynchronous Web Service Invocation
» Steps to Invoke Web Services Asynchronously
» Configuring Your Servers for Asynchronous Web Service Invocation
» Building the Client Artifacts for Asynchronous Web Service Invocation
» Configuring the Address of the Asynchronous Response Endpoint
» Configuring the ReplyTo and FaultTo Headers of the Asynchronous Response Endpoint
» Configuring the Context Path of the Asynchronous Response Endpoint
» Developing the Asynchronous Handler Interface
» Propagating User-defined Request Context to the Response
» Creating the Web Service MakeConnection WS-Policy File Optional
» Programming the JWS File to Enable MakeConnection
» Using the JAX-WS Reference Implementation
» Propagating Request Context to the Response Monitoring Asynchronous Web Service Invocation
» Roadmap for Developing Reliable Web Service Clients
» Roadmap for Securing Reliable Web Services
» Overview of Web Services Reliable Messaging
» Steps to Create and Invoke a Reliable Web Service
» Configuring the Source and Destination WebLogic Server Instances
» Creating the Web Service Reliable Messaging WS-Policy File
» Programming Guidelines for the Reliable JWS File
» Configuring the Acknowledgement Interval
» Managing the Life Cycle of a Reliable Message Sequence
» Monitoring Web Services Reliable Messaging Grouping Messages into Business Units of Work Batching
» Overview of Web Service Persistence
» Roadmap for Configuring Web Service Persistence Configuring Web Service Persistence
» Using Web Service Persistence in a Cluster
» Cleaning Up Web Service Persistence Overview of Message Buffering Configuring Messaging Buffering
» Overview of Web Services Cluster Routing
» How Web Service Cluster Routing Works
» Monitoring Cluster Routing Performance Overview of Web Services Atomic Transactions
» Enabling Web Services Atomic Transactions on Web Service Clients
» Overview of Callbacks Steps to Program Callbacks
» Sending Binary Data Using MTOMXOP
» Streaming SOAP Attachments Oracle Fusion Middleware Online Documentation Library
» Additional Considerations When Specifying WSDL Location
» Disabling XML Catalogs in the Client Runtime Getting a Local Copy of XML Resources
» Overview of SOAP Message Handlers
» Designing the SOAP Message Handlers and Handler Chains
» Creating the SOAP Message Handler
» Configuring Handler Chains in the JWS File Creating the Handler Chain Configuration File
» Compiling and Rebuilding the Web Service
» Configuring the Client-side SOAP Message Handlers
» Overview of Web Service Provider-based Endpoints and Dispatch Clients
» Developing a Web Service Dispatch Client
» Registering a More Recent Version of the Jersey JAX-RS Shared Libraries
» Overview of RESTful Web Services Programming Web Services Using XML Over HTTP
» Overview of Stateful Web Services Accessing HTTP Session on the Server
» A Note About the JAX-WS RI Stateful Extension Overview of UDDI
» Description of Properties in the uddi.properties File
Show more