Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Swordfish Documentation: Creating JAX-WS Client"

(Creating the Client)
(Prerequisites)
Line 4: Line 4:
 
==Prerequisites==
 
==Prerequisites==
 
Eclipse Galileo M7 build or later.<br>
 
Eclipse Galileo M7 build or later.<br>
The target platform should contain the Apache CXF  and the org.apache.servicemix.cxf.transport.nmr bundles<br>
+
The target platform should contain the Apache CXF  and the org.eclipse.swordfish.plugins.cxf.support bundles<br>
 
The examples described here are based on Eclipse Galileo M7.
 
The examples described here are based on Eclipse Galileo M7.
  

Revision as of 05:13, 30 June 2009

Creating the JAX-WS Client

This section contains instructions on creating the JAX-WS client for the JAX-WS service deployed into the NMR.

Prerequisites

Eclipse Galileo M7 build or later.
The target platform should contain the Apache CXF and the org.eclipse.swordfish.plugins.cxf.support bundles
The examples described here are based on Eclipse Galileo M7.

About JAX-WS Client

For the general information of how to configure the JAX-WS client please look at http://cwiki.apache.org/CXF20DOC/jax-ws-configuration.html (Configuring a Spring Client section)
It is used to create the java proxy based on the supplied interface class.
This proxy transforms method call into the SOAP request and sends it to the web service

Creating the Client

The sample that shows how to create the JAX-WS client is located at http://dev.eclipse.org/svnroot/rt/org.eclipse.swordfish/trunk/org.eclipse.swordfish.samples/org.eclipse.swordfish.samples.cxfendpoint/

To create the client:

  1. Create the spring xml configuration file
  2. Add the following spring imports:
        <import resource="classpath:META-INF/cxf/cxf.xml" />
        <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
        <import resource="classpath:META-INF/org/eclipse/swordfish/plugins/cxf/support/nmr-transport.xml" />
       
    
  3. Provide the necessary ImportPackage and Require-Bundle statements in the MANIFEST.MF file as it is done in http://dev.eclipse.org/svnroot/rt/org.eclipse.swordfish/trunk/org.eclipse.swordfish.samples/org.eclipse.swordfish.samples.cxfendpoint/META-INF/MANIFEST.MF

Back to the top