WSDL2Ws Tool

Axis C++ WSDL2Ws Tool


Contents

1 Introduction

    1.1 Source Code Generation

    1.2 Programming Languages

    1.3 Encoding Styles

    1.4 Styles of Services

    1.5 Support for Complex Types

2 Using the Tool

    2.1 Dependencies on Axis Java tool

    2.2 Building the Tool

    2.3 Synopsis

    2.4 Setting up CLASSPATH

    2.5 Running the Tool

3 Architecture

    3.1 Outline

    3.2 Mediator WebServiceContext

    3.3 Generator

    3.4 Flow of Execution

    3.5 Sequence Diagram

1 Introduction

The WSDL2Ws tool that comes with Axis C++ can be used to generate different types of wrapper classes / skeletons for the server side and wrapper classes / stubs for the client side for a given WSDL file. WSDL2Ws tool is written in Java and is based on the WSDL tools by Axis Java project.

1.1 Source Code Generation

WSDL2WS tool can be used for generating the following C/C++ source files for a given WSDL file :

  • Server side skeletons and wrappers
  • Client side stubs and wrappers

The generated Wrappers support the following functions :

  • Method invocation
  • Serialization
  • Deserialization

1.2 Programming Languages

The tool is capable of generating source code for both C++ and C

1.3 Encoding Styles

The tool should be able to support SOAP 1.2 encoding style and extensible to support other encoding styles as well. However verifying the compliance with SOAP 1.1 / SOAP 1.2 and WS-I Basic Profile remains a TODO.

1.4 Styles of Services

The tool is able to generate code for RPC (encoded) and Document Literal style WSDLs

1.5 Support for Complex Types

The tool generates wrapper classes / structs / functions for complex types. The generated source include:

  • Wrapper classes for complex types with data members and constructors/destructors
  • Helper functions for serializing/deserializing complex types
  • Wrapper structs to handle arrays of complex types

2 Using the Tool

2.1 Dependencies on Axis Java tool

Apache Axis C++ uses WSDL processing tools from Axis Java project and extends those for C/C++ code generation.

The following jar files that comes with (or used by) Axis Java are required to run Axis C++ WSDL2Ws tool:

  • axis.jar
  • wsdl4j.jar
  • commons-discovery.jar
  • commons-logging.jar
  • log4j-1.2.8.jar
  • jaxrpc.jar
  • saaj.jar

"SchemaUtils" (SchemaUtils.java) and "ElementDecl" (ElementDecl.java) classes of Axis Java tools have been overridden by Axis C++ WSDL2Ws implementation.

Other than the two classes mentioned above, no other class from Axis Java WSDL tool implementation has been overridden or extended at present by Axis C++ WSDL2Ws tool; hence all other classes in Axis Java tool are used as they are.

Except for "SchemaUtils" and "ElementDecl" classes, the rest of the classes of Axis C++ WSDL2Ws are unique to Axis C++ and they use functionality form Axis Java jars.

2.2 Building the Tool

If you want to build the WSDL2Ws tool form source, there is an Apache Ant build script to help you. Assuming that you have installed Ant properly, what you have to do is to set the CLASSPATH to include Axis Java jar files mentioned in the previous section and run ant command in $AXISCPP_HOME/src/wsdl folder. Once you build the tool the generated wsdl2ws.jar file would be placed in $AXISCPP_HOME/lib/axis/ folder.

2.3 Synopsis

java WSDL2Ws [options] wsdl-file

Options

-help, -h              print a short help message
-o(folder) target output folder - default is current folder
-l(c++|c) target language (c++|c) - default is c++
-s(server|client) generate server skeletons or client stubs? (serve|client) - default is server
-w(wrapped|nonwrapped) wrapping style of the WSDL (wrapped|nonwrapped) - default is wrapped
-verbose, -v be verbose
-m(none|gnu) generate make files (none|gnu) - default is none

2.4 Setting up CLASSPATH

Make sure that your CLASSPATH environment variable has all the jar files mentioned in section 2.1 above. Then modify your CLASSPATH to include the wsdl2ws.jar file from Axis C++:

On Linux:

CLASSPATH=$AXISCPP_HOME/lib/axis/wsdl2ws.jar:$CLASSPATH
export CLASSPATH

On Windows:

set CLASSPATH=%AXISCPP_HOME%\lib\axis\wsdl2ws.jar;%CLASSPATH%

Alternatively, you can use the -classpath option of java command to specify the CLASSPATH.

NOTE: It is a MUST that that you have wsdl2ws.jar from Axis C++ appearing before all the jar files form Axis Java on the CLASSPATH. If not you will run into trouble when generating code. This is a known problem and happens because the two classes, "SchemaUtils" and "ElementDecl", of Axis C++ that overides Axis Java classes with the same name have identical package names to that of Axis Java classes.

2.5 Running the Tool

You could run the tool as shown in the following example. Assuming you have not included wsdl2ws.jar in your class path:

java -classpath $AXISCPP_HOME/lib/axis/wsdl2ws.jar:$CLASSPATH org.apache.axis.wsdl.wsdl2ws.WSDL2Ws \
     -obaseServerOut $AXISCPP_DEPLOY/wsdls/base.wsdl

The above command will generate C++ server side skeleton and wrapper classes and place the generated source files in a folder named baseServerOut. You could have also used -sserver and -lc++ options to generate the same. To generate client side C++ code for the same WSDL file and place the generated code in baseClientOut folder, you could run:

java -classpath $AXISCPP_HOME/lib/axis/wsdl2ws.jar:$CLASSPATH org.apache.axis.wsdl.wsdl2ws.WSDL2Ws \
     -obaseClientOut -sclient -lc++ $AXISCPP_DEPLOY/wsdls/base.wsdl

3 Architecture

3.1 Outline

The tool takes a top down approach. It starts with a WSDL document and generates all the classes (skeletons, wrapper classes for complex types and stubs) necessary to deploy (server side) and consume (client side) the web service. For more information about the generated classes please refer to the architecture documentation.

The following figure shows the high level architecture of the WSDL2Ws tool



3.2 Mediator WebServiceContext

The WSDL file and the user options are processed by the WSDL2Ws class. Then WSDL2Ws creates an instance of WebServiceContext class (wscontext), which is the runtime representation of the processed data. This WebServiceContext instance selects the Generator to be used. The Generators extract the information from the WebServiceContext instance and creates the files. The WebServiceContext instance acts as a mediator and creates a loosely coupled system.

WebServiceContext has the following components

  1. ServiceInfo - information about service
  2. WrapperInfo - information about wrapper options
  3. TypeMap - information about custom types

3.2 Generator

Generator generates a class based on the options passed by user. It contains a class called SourceWriter and the concrete implementation of the SourceWriter decides what the Generator generates.

3.4 flow of Execution

  1. WSDL file and user options are processed by the WSDL2Ws and WebServiceContext object is created
  2. WebServiceGenaratorFactory will create WebServiceGenerator based on the service style
  3. Then the WebServiceGenarator will create the right set of Generators that will take care of generating C/C++ source files
  4. Each Generator will invoke SourceWriter which is capable of writing the given type of file


3.5 Sequence Diagram