Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Overview of the ServiceMix

...

2.x WSIF Example

This document describes the Web Services Invocation Framework (WSIF) provides a Java API for calling Web services, hiding the details of how the service is provided, i.e., via SOAP, JMS, etc. The following guide describes the ServiceMix components that integrate with the Apache Web Service Invocation Framework (WSIF) to perform web service invocations using a number of different implementation protocols such as Axis, local Java, EJB, JMS, JCA and CCI.

The WSIF example illustrates the following:

  • an example of declarative programming
  • how to enable a service to be exposed expose web service over a JMS queue through WSIF

NOTE: This is not a complete, working example. Rather, it illustrates how WSIF can be used in a ServiceMix component, through a typical and realistic web application. The following components in the diagram have not been completely implemented:

  1. The Web Form has not been created
  2. The HTTP Binding Component has not been configured, via a servicemix.xml file, to use the "checkAvailabity" component as its destination.

This example shows critical code snippets from a larger example, which can be found at : Apache Web Services Project. The original example has a A client application submitting submits a zip code ZIP Code to a Web Services application via a JMS queue. The web service then checks if DSL service is available in the zip code ZIP Code area and responds to the client. In the original example, the client uses a JMS queue to send the message and the web service receives the message from queue and responds. , also by sending a JMS message. The client software uses WSIF to hide the implementation details of JMS.

In the ServiceMix example, the WSIF API is used by the client to make the ZIP Code request . This decouples the transport layer from the client codeto the web service. The WSIF API takes care of the JMS details of JMS for the client . Other (although other transport mechanisms, such as SOAP, JCA, etc., could have been used by the client as well, such as SOAP. WSIF ). The ServiceMix WSIF API provides a single API to the client and handles the details of the transmission web service invocation for the client. More to follow..., simplifying the client code.

The following example also shows an important feature of the ServiceMix Client API - how to bind a WSDL file for a web service, which is adorned with includes additional WSIF additional metadata to configure the service implementation.

...

In other words, the service.wsdl file contains WSIF extensions to WSDL that bind the web service to the transport protocol. Some of the coding details will be shown later in this document.

How it Works

The diagram below illustrates the example program's logical flow of the program through the WSIF components:

...



...

Image Modified

...



The logical flow of the program isFollowing, are the details of example program's logic flow:

  1. A user opens a web browser and access accesses a web form with a "zipcodezip code" input field and a submit button. The submit button sends the form and the zipcode typed in ZIP Code entered by the user to a Servicemix HTTP binding component.
  2. The ServiceMix HTTP binding component creates an InOut exchange message through the client API. The message is sent through the NMR to the checkAvailability component.
  3. The checkAvailability component sends the request to the JMS queue.
  4. The webservice web service is implemented with as a message-driven EJB (MDB), who's "onMessage" method is listening for messages on the queue.
  5. The MDB , processes the request and sends back a response to the checkAvailability component through a temporary queue. The response is either "true" (DSL service is available) or "false" (DSL service is not available).
  6. The checkAvailability component receives the response from the queue.
  7. The checkAvailability component responds to the HTTP client.
  8. The HTTP client sends the result back to the web form. The value of the result property is displayed and let's lets the user know whether or not DSL is available at the zipcodein the specified zip code area.

Details

The following table provides more details about the function of the checkAvailability component and the Web Service MDB:

Component or Bean ID

Description

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="d873165e-6379-4533-846e-953d6dd023f8"><ac:plain-text-body><![CDATA[

checkAvailability

This component uses the WSIFBinding class to integrate WSIF to service mix ServiceMix as specified in the class property. Its definitionResource property is set to read the file classpath:org/servicemix/components/wsif/service.wsdl file, which defines is the WSDL file that will be used. This The service.wsdl file can be found at [servicemix-2.x_src_install_dir]\components\base\src\test\resources\org\servicemix\components\wsif. In the init() method of the WSIFBinding class, service.wsdl is read to define the binding extension.

]]></ac:plain-text-body></ac:structured-macro>

MDB

This message driven bean MDB is the actual implementation of the service. It acts like a message listener on the queue specified on in the config files. When a message is delivered, it extracts the body which is presumably a valid zip code, so the bean makes it an integer in an unsafe and intrepid mannera ZIP Code. It then applies some logic to determine whether DSL service is available at this zip code ZIP Code or not. For simplicity, it just returns true for all zip codes ZIP Codes < 50000 , and false otherwise. The return message is sent to the queue specified in the replyTo field of the request message. Note that the bean NOTE: The MDB must encode the correct JMSCorrelationID in the return message in order for it to be picked up by WSIF.

...

Additional Coding Details

Snippet from The following snippet is from the servicemix.xml file. Note: that the WSIFBinding class has the service.wsdl

Code Block


  <message name='checkAvailabilityRequest'>
    <part name='zipCode' type='xsd:string'/>
  </message>

  <message name='checkAvailabilityResponse'>
    <part name='result' type='xsd:string'/>
  </message>

  <portType name='CheckAvailabilityPortType'>
    <operation name='checkAvailability'>
      <input message='tns:checkAvailabilityRequest'/>
      <output message='tns:checkAvailabilityResponse'/>
    </operation>
  </portType>

  <binding name='CheckAvailabilityJMSBinding' type='tns:CheckAvailabilityPortType'>
    <jms:binding type="TextMessage"/>
    <format:typeMapping encoding="XML" style="Java">
      <format:typeMap typeName="xsd:string" formatType="java.lang.String"/>
    </format:typeMapping>
    <operation name='checkAvailability'>
      <input>
        <jms:input parts="zipCode"/>
        <jms:property message="Request" part="myInt"/>
        <jms:propertyValue name="myLiteralString" type="xsd:string" value="Hello World"/>
      </input>
      <output>
        <jms:output parts="result"/>
      </output>
    </operation>
  </binding>

  <service name='CheckServiceAvailability'>
    <port name='CheckAvailabilityPort'  binding='tns:CheckAvailabilityJMSBinding'>

      <!-- ActiveMQ configuration -->
      <jms:address destinationStyle="queue"
        jndiDestinationName="dynamicQueues/test.org.servicemix.example.wsif"
        jndiConnectionFactoryName="ConnectionFactory"
        initialContextFactory="org.activemq.jndi.ActiveMQInitialContextFactory"
        jndiProviderURL="tcp://localhost:61626"/>
    </port>
  </service>

file as a property.

...

Following is an example of how to enable a service to be exposed over a JMS topic or queue. This is a snippet of code from the service.wsdl file. It shows how to configure the JMS binding:

...

Here The following are descriptions of the properties found in the service.wsdl file. These The descriptions are quoted from the WSDL Bindings for JMS web page:

  • <jms:address> describes a target port that is accessible via JMS.
  • destinationStyle must either be queue or topic, although only queue is supported at this time.
  • jndiDestinationName is the JNDI name of the JMS queue that WSIF will send requests to.
  • jndiConnectionFactoryName is the JNDI name of the connection factory that WSIF will be used.
  • jndiProviderURL and initialContextFactory specify which JNDI database to use. If they are not present, WSIF uses the default JNDI.
  • jms:binding specifies that this binding is for Native

...

  • JMS. The type is the type of the JMS message that will be sent. In this case it will be a text message.

Working with XML versus properties

The JBI standard requires encoding WSDL 1.1 parts using an XML encoding mechanism. ServiceMix supports this requirement. However, in addition ServicMix also allows the message properties, of an NMR message, to use the named parts of the service.wsdl file, to avoid unnecessary XML marshalling.

A Java client can be programmed as an alternative way of invoking the web service, in lieu of a web form. The following is a Java client example using the ServiceMix Client API in a WSIF approach, passing in and fetching out named parameters. This Java client is performing the role originally assigned to the HTTP Client above. It also needs to be configured (not shown) to communicate to the "checkAvailability" service via the ServiceMix NMR. In other words, it needs to have "checkAvailability" set as its "destination" for the NMR messages it sends.

...

The previous Java code works against the given WSDL 1.1 service.wsdl file using its named parts:

...

Related Documentation

For more information on the following topics , please see: