Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 93763 invoked from network); 20 Apr 2007 05:55:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Apr 2007 05:55:37 -0000 Received: (qmail 34889 invoked by uid 500); 20 Apr 2007 05:55:40 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 34798 invoked by uid 500); 20 Apr 2007 05:55:40 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 34786 invoked by uid 500); 20 Apr 2007 05:55:40 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 34707 invoked by uid 99); 20 Apr 2007 05:55:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Apr 2007 22:55:39 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Apr 2007 22:55:27 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3597C1A983E; Thu, 19 Apr 2007 22:55:07 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r530659 [2/2] - /webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html Date: Fri, 20 Apr 2007 05:55:06 -0000 To: axis2-cvs@ws.apache.org From: dushshantha@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070420055507.3597C1A983E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html?view=diff&rev=530659&r1=530658&r2=530659 ============================================================================== --- webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html (original) +++ webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html Thu Apr 19 22:55:05 2007 @@ -1,2936 +1,2935 @@ - - - Apache Axis2/C Manual - - - - -

Preamble

- -

This document is intended to be a reference -manual for Apache Axis2/C. This -manual details how Axis2/C can be used to provide and consume Web -services.

- -

Please send your feedback to the Apache Axis2/C -developer mailing list (axis-c-dev@apache.org). Subscription -details are available on the Axis2 site.

- -

This document uses the following conventions:

-
    -
  • The directory each package is installed in is given with an - "_INSTALL_DIR" suffix to the package name. For example, the path in which - Libxml2 is installed is referred to as LIBXML2_INSTALL_DIR
  • -
- -

Axis2/C Manual - Contents

-
    -
  1. Quick Start Guide
  2. -
  3. Repository Folder
  4. -
  5. Service API
  6. -
  7. Client API
  8. -
  9. REST
  10. -
  11. MTOM
  12. -
  13. Engaging a Module
  14. -
  15. WS-Addressing
  16. -
  17. Writing a Module
  18. -
  19. Simple Axis Server
  20. -
  21. Deploying with Apache2 HTTP Web Server
  22. -
  23. Using SSL Client
  24. -
  25. Using Proxy Support
  26. -
  27. WSDL2C Tool
  28. -
  29. Appendix A - axis2.xml
  30. -
  31. Appendix B - services.xml
  32. -
  33. Appendix C - module.xml
  34. -
  35. Appendix D - service client options
  36. -
- - -

1. Quick Start Guide

- -

This section is aimed to help you get a Web service running in a short -time using Axis2/C, and consume that service using an Axis2/C client.

- -

First, download -the latest binary release from Apache Axis2/C. Once you download the correct -binary that suits your platform, all that you require to get it running is to -extract the package to a folder of your choice, and set the AXIS2C_HOME -environment variable to point to this extracted folder. For Linux, you may -have to set the LD_LIBRARY_PATH environment variable to include the lib -folder (e.g. add $AXIS2C_HOME/lib). For MS Windows, you will have to add the -lib folder to your PATH variable to include the Axis2/C DLLs to your path.

- -

Now you should be able to change the directory to the bin folder of the -extracted folder, and run the simple axis server in one command shell. Then -change the directory to bin/samples in another command shell and run any of -the samples there (you may have to set the environment variables in this new -shell as well). Please see the installation -guide for more details.

- -

Once you have Axis2/C up and running successfully, you can start writing -your own services and clients. The following sections explain how to write -your first service and client with Axis2/C.

- -

1.1 Hello Service

- -

Let's see how you can write your first Web service with Axis2/C and how to -deploy it.

- -

The first service that we are going to write is named "hello" with a -single operation named "greet" in the service. This "greet" operation, when -invoked by the client, will expect the client to send a greeting in the -request, and in turn send a greeting in the response. Following are examples -of XML payloads exchanged between the client and the service:

- -

Request:

-
   <greet>
-        Hello Service!
-   <greet>
- -

Response:

-
   <greetResponse>
-        Hello Client!
-   <greetResponse>
-
- - -

The steps to be followed when implementing a service with Axis2/C -include:

-
    -
  1. Implement the functions corresponding to the operations of the - service.
    - In our sample, we will have one function that implements the "greet" - operation.
    - We will name that function axis2_hello_greet.
  2. -
  3. Implement the functions defined by the - axis2_svc_skeleton interface
    - axis2_svc_skeleton interface expects the functions - init, invoke, on_fault and - free to be implemented by our service.
    - In our sample, we would implement those and name them as - hello_init, hello_invoke, - hello_on_fault and hello_free respectively.
    -
  4. -
  5. Implement the create function, that would create an instance of the - service skeleton
    - The create function would create an axis2_svc_skeleton and assign the - respective function pointers to map the axis2_svc_skeleton interface to - our interface implementation methods explained in the above step.
    -
  6. -
  7. Implement axis2_get_instance and axis2_remove_instance - functions
    - These functions are used to create and destroy service instances by the - engine, and each service must define these functions.
    -
  8. -
  9. Write the services.xml file for the service
    - The services.xml file acts as the deployment descriptor file for the - service. As the bare minimum, we need to configure the service name, - operations, and the shared library file name containing the service - implementation in this file.
    - As previously decided, we will name the service "hello", the operation - "greet" and the shared library libhello.so on Linux and hello.dll on MS - Windows.
    -
  10. -
- -

1.1.1 Operation Implementation

- -

Look for the axis2_hello_greet function in the hello_svc.c source file.

- -

This function implements the business logic for the greet operation. We -will be calling this function from our implementation of the invoke function. -Basically, this function receives the request payload as an -axiom_node, process it to understand the request logic, and -prepares the response as an axiom_node and returns that.

- -

1.1.2 Skeleton Create Method

- -

Look for the axis2_hello_create function in the hello_svc.c source file.

- -

The create function creates and returns a new -axis2_svc_skeleton instance. The most important aspect to note -about this function is the function pointer assignments. They are used to map -the interface operations to the corresponding functions of the -implementation. This is done by assigning the ops member of the service -skeleton to the address of the ops struct variable.

- -

1.1.3 Invoking Operation Implementation

- -

The invoke method of the service skeleton is the point of entry for -invoking the operations. Hence in our implementation of the invoke function, -we have to define how the operations are to be called.

- -

Look for the hello_invoke function in the hello_svc.c source file.

- -

In our implementation of the hello_invoke, we call the -function implementing the greet operation. As we have only one operation, the -task is simple here. If we had multiple operations, we will have to look into -the information in the message context to map it to the exact operation.
-The Axis2/C engine will call the invoke method with an -axiom_node, containing the request payload, and -axis2_msg_ctx instance, containing the message context -information, in addition to the service skeleton and the environment -pointers. We can use the message context to extract whatever information we -deem necessary that is related to the incoming message. The Axis2/C engine -expects the invoke method to return a pointer to an axiom_node, -representing the response payload.

- -

1.1.4 Full Source

- -

Here is the complete source code for the service : hello_svc.c

- -

1.1.5 Service Descriptor

- -

The services.xml file contains details on the service that would be read -by the Axis2/C deployment engine during server start up time. The following -shows the contents for the services.xml file for the hello service.

-
<service name="hello">
-   <parameter name="ServiceClass" locked="xsd:false">hello</parameter>
-   <description>
-        Quick start guide hello service sample.
-   </description>
-   <operation name="greet"/>
-</service>
- -

The service configuration shown above specifies that the name of the -service is hello.
-The value of the "ServiceClass", "hello" in this case, will be mapped to the -service implementation by the deployment engine as libhello.so on Linux or -hello.dll on MS Windows. The description element contains a brief description -of the service.
-There can be one or more operation elements. For this sample, we only have -one operation, with the name "greet".
-

- -

1.1.6 Compiling the Service

- -

You can compile the service sample as shown below.

- -

On Linux:

-
gcc -shared -olibhello.so -I$AXIS2C_HOME/include/axis2-1.0/ -L$AXIS2C_HOME/lib -laxis2 hello_svc.c 
- -

On MS Windows:

- -

to compile,

-
cl.exe /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "AXIS2_DECLARE_EXPORT" /D "AXIS2_SVR_MULTI_THREADED" /w /nologo /I  %AXIS2C_HOME%\include /c hello_svc.c
- -

to link,

-
link.exe /nologo /LIBPATH:%AXIS2C_HOME%\lib axutil.lib axiom.lib axis2_parser.lib axis2_engine.lib /DLL /OUT:hello.dll *.obj
- -

1.1.7 Deploying the Service

- -

To make the service available to be consumed by the clients, we have to -deploy the service. To deploy the service, you have to create a folder named -'hello' in the AXIS2C_HOME/services folder, and copy the services.xml file -and the shared library file (libhello.so on Linux or hello.dll on MS Windows) -into that folder.

- -

To verify that your service has been correctly deployed, you can start the -simple axis server and then browse the list of deployed services using a Web -browser. To start the simple axis server, you can go to the AXIS2C_HOME/bin -folder and run the executable axis2_http_server. The default URL that you can -test the service list with is http://localhost:9090/axis2/services. -You should get an entry for the hello service on the page that is -displayed.

- -

1.2 Hello -Client

- -

Now that you know how to write a service with Axis2/C, let's see how to -write a client to consume that service. The request payload that the client -will be sending to the service was described in the previous section. The -client has to prepare the payload, send it to the service, and then receive -and process the response.

- -

The steps to be followed when implementing a client with Axis2/C:

-
    -
  1. Create the environment to be used by the client.
    - Each function in Axis2/C takes a pointer to the environment instance that - encapsulates the memory allocator, error handler, and logging and - threading mechanisms. The axutil_env_create_all method can - be used to create a default, ready to use environment instance.
    -
  2. -
  3. Create an options instance, and set options.
    - The axis2_options struct can be used to set the client side - options. For example, we can use options to set the endpoint address of - the service to be consumed by the client.
  4. -
  5. Create a service client instance, giving the client repository - folder as a parameter.
    - The axis2_svc_client struct is meant to be used by the users - to consume Web services. It provides an easy to use API. Service client - create method takes the location of the repository as a parameter. For - the purpose of our sample, you can use the AXIS2C_HOME as the repository. - The concept of repository is explained in - detail in a later section.
    -
  6. -
  7. Set options to service client instance
    - The options created in an earlier step have to be set on the service - client, indicating the options that are meant to be used by the service - client.
    -
  8. -
  9. Send the request and receive the response
    - The service client's axis2_svc_client_send_receive method - can be used to invoke the send receive operation on the service client - instance.
    - The send receive operation takes the request payload as an - axiom_node and returns the response payload as an - axiom_node.
  10. -
  11. Process the response
    - Process the response in line with the client business logic.
  12. -
- -

1.2.1 Creating and Setting Options

-
    options = axis2_options_create(env);
-    address = "http://localhost:9090/axis2/services/hello";
-    endpoint_ref = axis2_endpoint_ref_create(env, address);
-    axis2_options_set_to(options, env, endpoint_ref);
- -

In the above section of code, an axis2_options instance is -created first. Then an endpoint reference instance is created with the -address of the location of the service. Finally, the created endpoint is set -as the "to" address of the options. The "to" address indicates where the -request should be sent to.

- -

1.2.2 Using Service Client

-
    svc_client = axis2_svc_client_create(env, client_home);
-    axis2_svc_client_set_options(svc_client, env, options);
-    payload = build_om_request(env);
-    ret_node = axis2_svc_client_send_receive(svc_client, env, payload);
- -

After creating and preparing the options, the next step is to create a -service client instance and use it to send the request and receive the -response. The code fragment given above shows how options can be set on top -of the service client and how to invoke the send receive operation with a -request payload. Once the response is received, the response payload will be -stored in the ret_node, which is a pointer to an -axiom_node that can be used to process the response further.

- -

1.2.3 Full Source

- -

Here is the complete source code for the client : hello.c

- -

1.2.4 Compiling the Client

- -

You can compile the client sample as shown below.

- -

On Linux:

-
gcc -o hello -I$AXIS2C_HOME/include -L$AXIS2C_HOME/lib -laxis2 hello.c
- -

On MS Windows:

- -

to compile,

-
cl.exe /nologo /D "WIN32" /D "_WINDOWS" /D "_MBCS" /I %AXIS2C_HOME%\include /c hello.c
- -

to link,

-
link.exe /LIBPATH:%AXIS2C_HOME%\lib axutil.lib axiom.lib axis2_parser.lib axis2_engine.lib /OUT:hello.exe *.obj
- -

1.2.5 Running the Client

- -

To run the client, make sure you start the simple axis server and then run -the hello executable.

- -


-

- - -

2. Repository Folder

- -

Repository is a folder where all Axis2/C related configurations as well as -services and modules are located. The following shows the folder structure of -the repository:

- - -

Here the name of the repository folder is axis2c_repo. In your system, you -can specify any folder name of your choice. There are three sub folders -available in the repository. In addition to that, the axis2.xml configuration -file is also located in the repository. The following table describes the -purpose of the repository contents.

- - - - - - - - - - - - - - - - - - - - - - - - - -
Axis2/C Repository Sub-folders
Folder NameDescription

lib

-

The lib folder contains the libraries required to run the - Axis2/C engine. While you can afford to have the shared libs of - Axis2/C in a location of your choice, the dynamically loaded shared - libs, parser, transport receiver and transport sender has to be in - the repository lib folder.
- It is mandatory that the lib folder is there in the repository.

-

modules

-

The modules folder contains the modules deployed with Axis2/C. - Each module deployed will have its own sub folder inside the modules - folder. For example, if the addressing module is deployed, then there - will be a sub folder named addressing inside the modules folder of - the repository.
- At deployment, the Axis2/C deployment engine would traverse the - modules folders to find out what modules are available.
- The modules folder is optional. If it is empty or non-existent, that - means that there are no deployed modules.

-

services

-

The services folder contains the services deployed with Axis2/C. - Each service deployed will have its own sub folder inside the - services folder, or live inside one of the sub folders.
- At deployment, the Axis2/C deployment engine will traverse the - services folders to find out what services are available.
- The services folder is optional. If it is empty or non-existent, that - means that there are no deployed services.

-

axis2.xml

-

The axis2.xml file is the configuration file of Axis2/C.
- The configuration file is mandatory and must have the name axis2.xml. - It is safe to consider your Axis2/C repository to be the folder in - which you have the axis2.xml file.

-
- -

Both clients as well as the services written using Axis2/C can use the -same repository. However you can use one repository for the server side and -another one for the client side. The services folder is used only when the -repository is used by the server side. When the repository is used by the -client, the services folder, if present, will not be used.

- -

The Axis2/C binary distribution, when extracted, can be considered as -ready for use as your repository folder. If you are building Axis2/C from the -source distribution, when you build the source, including the samples, the -installation destination will be ready for use as your repository folder.

- -

The simple axis server (that is axis2_http_server binary), the client -samples, and the HTTPD module (Axis2 Apache2 module) require the repository -folder to be specified in order to run correctly.

- -

- -

2.1 Module Folders

- -

As described earlier, all the modules are placed inside the modules folder -of the repository, and each module will have its own sub folder within the -modules folder.
-The folder in which a module is placed must have the same name as the module -name. For example, the addressing module will be placed in a sub folder named -addressing.
-

- -

Inside the folder corresponding to a module, the shared library -implementing the module and the module configuration file, module.xml, is -placed. It is a must that these two files are present inside each folder -representing a module. The module.xml file will be processed by the -deployment engine to find out module specific information such as the module -name, set of handlers, the flows into which those handlers are to be added, -etc.

- -

2.1 Service Folders

- -

All the services are placed inside the services folder of the repository, -and each service will be in one of the sub folders within the services -folder. Axis2/C has a concept called service groups, where there can be one -or more services inside a service group. A single stand alone service is -assigned a service group with the same name as that of the service by the -Axis2/C engine for the purpose of easy handling. Therefore the sub folders in -the services folder correspond to the service groups.

- -

A service, if deployed as a stand alone service, will reside inside a -folder with the same name as that of the service. For example, the echo -service will be placed in a sub folder named echo. The shared library -implementing the service and the service configuration file, the -services.xml, will be placed inside the folder corresponding to a service. -Given the fact that the engine treats the folders to represent service groups -and not a single service, the configuration file is called services.xml. -However, you can always place a single service inside a single folder, which -is the most common use case.

- -

Each sub folder within the services folder should have at least one shared -lib implementing a service and a services.xml file. If it is a real service -group, there will be multiple shared libs, yet there is only one services.xml -file configuring all those services. The services.xml file is processed by -the deployment engine to find out the service group and the service specific -information such as the service group name, service name, the set of -operations for each service, etc.

- - -

3. Service API

- -

We have already seen how to write a service in the Quick Start Guide -section of this manual. This section covers the service API of Axis2/C in -more detail.

- -

axis2_svc_skeleton is an interface. Axis2/C does not provide -any concrete implementation of this interface. It is the responsibility of -the service implementer to implement this interface. To implement the -interface, you should implement the functions adhering to the function -pointer signatures of the members of the axis2_svc_skeleton_ops -struct. Then, a create function should be written to create an -axis2_svc_skeleton instance, and assign the implementing -functions to the members of the ops member of service skeleton.

- -

The following table details the signatures of the function pointer members -of the axis2_svc_skeleton struct implemented by a service.

- - - - - - - - - - - - - - - - - - - - - - - - - -
Function SignatureDescription
int (AXIS2_CALL *
-    init)(axis2_svc_skeleton_t *svc_skeleton,
-        const axutil_env_t *env);
-
Initializes the service skeleton object instance. The Axis2/C - engine initializes a service skeleton instance once per deployed - service, during the first request made to the service.
axiom_node_t *(AXIS2_CALL*
-    invoke )( axis2_svc_skeleton_t *svc_skeli,
-        const axutil_env_t *env,
-        axiom_node_t *node,
-        axis2_msg_ctx_t *msg_ctx);
-
Invokes the service implementation. You have to implement the logic - to call the correct functions in this method based on the name of the - operation being invoked.
axiom_node_t *(AXIS2_CALL*
-    on_fault)(
-        axis2_svc_skeleton_t *svc_skeli,
-        const axutil_env_t *env,
-        axiom_node_t *node); 
-
This method is called by the engine if a fault is detected.
axis2_status_t (AXIS2_CALL *
-    free )( axis2_svc_skeleton_t *svc_skeli,
-        const axutil_env_t *env);
-
Frees the service implementation instance.
-
- - -

There are two more methods that a service should implement. Once a service -is deployed, the message receiver of the Axis2/C engine has to create a -service instance at run time for the purpose of invoking it. For this, it -looks for a method named axis2_create_instance and calls it on -the service shared library. The engine also looks for a function named -axis2_remove_instance in the shared library for clean up -purposes.

- -

Note that service object instantiation happens once per service. When the -first request is received by the service, a service skeleton instance is -created and initialized. The same object instance will be re-used by the -subsequent requests.

- -

You can find an example on how to implement the service skeleton interface -in the hello_svc.c source file, -which is the example used in the Quick Start -Guide. More advanced samples can be found in the samples folder of the -Axis2/C distribution.

- - -

4. Client API

- -

The primary client API to be used with Axis2/C is -axis2_svc_client, the service client API. This is meant to be an -easy to use API for consuming services. If you want to do more complex tasks, -such as invoking a client inside a module, or wrap the client API with -another interface, you may need to use axis2_op_client, the -operation client API. For most of the use cases, the service client API is -sufficient.

- -

The behavior of the service client can be fine tuned with the options -passed to the service client. You can set the options by creating an -axis2_options instance. The bare minimum that you need to set is -the endpoint URI to which the request is to be sent. An example of this was -given in the Quick Start Guide section.

- -

The service client interface serves as the primary client interface for -consuming services. You can set the options to be used by the service client -and then invoke an operation on a given service. There are several ways of -invoking a service operation. The method of invoking an operation depends on -3 things. They are,

-
    -
  1. The Message Exchange Pattern (MEP)
  2. -
  3. Synchronous/Asynchronous behavior (Blocking/Non-Blocking)
  4. -
  5. Two-way or one-way transport
  6. -
- -

Many service operation invocation scenarios can be obtained by combining -the above three factors. The service client interface provides the necessary -API calls to achieve this.

- -

Deciding the Message Exchange Pattern (MEP)

- -

There are 2 message exchange patterns.

-
    -
  1. Out-Only
  2. -
  3. Out-In
  4. -
- -

In the Out-Only MEP, the client doesn't expect a reply from the server. -The service client provides two methods of using the Out-Only MEP.

- -

- -

axis2_svc_client_fire_and_forget

- -

Sends a message and forgets about it. This method is used to interact with -a service operation whose MEP is In-Only. There is no way of getting an error -from the service using this method. However, you may still get client-side -errors, such as host unknown.

- -

axis2_svc_client_send_robust

- -

This method too is used to interact with a service operation whose MEP is -In-Only. However, unlike axis2_svc_client_fire_and_forget, this -function reports an error back to the caller if a fault triggers on the -server side.

- -

When using Out-In MEP, the client expects a reply from the server. -axis2_svc_client_send_receive and -axis2_svc_client_send_receive_non_blocking -functions support this MEP.

- -

axis2_svc_client_send_receive

- -

This method is used to interact with a service operation whose MEP is -In-Out. It sends an XML request and receives an XML response.

- -

Returns a pointer to the AXIOM node representing the XML response. This -method blocks the client until the response arrives.

- -

axis2_send_receive_non_blocking

- -

This method too, is used to interact with a service operation whose MEP is -In-Out. It sends an XML request and receives an XML response, but the client -does not block for the response.

- -

In this method, the client does not block for the response, but instead it -expects the user to set a call back to capture the response.
-

- -

Please have a look at the axis2_svc_client.h header file for -more information on function signatures of the above mentioned functions.

- -

Synchronous vs. Asynchronous Behavior (Blocking/Non-Blocking)

- -

This will determine whether the client would block for the response -(synchronous) or return immediately expecting the response to be handled by a -callback (asynchronous, in other words non-blocking) in an Out-In MEP -scenario.
-axis2_svc_client_send_receive operates in synchronous mode, -whereas axis2_svc_client_send_receive_non_blocking operates in -asynchronous mode.
-

- -

Two-Way or One-Way Transport

- -

If the transport is two-way, then only one channel is used, which means -the request is sent and the response is received on the same channel. If the -transport is one-way, then the request is sent on one channel and the -response is received on a separate channel.
-If we want to use a separate channel for the response, a separate listener -has to be started to receive the response, This can be done by setting the -separate listener option to True using the -axis2_options_set_use_separate_listener function above the -options.

- -

Please have a look at the echo_blocking_dual sample to see -how to set the separate channel option.

- -

Please see Appendix D for further details on setting -options.

- - -

5. REST

- -

Axis2/C comes with plain old XML (POX) like REST support. A given service -can be exposed both as a SOAP service as well as a REST service. If you want -to consume Web services using REST style calls, you can use either the HTTP -POST method or the HTTP GET method.

- -

The following example code fragment shows how to enable a REST style -invocation.

-
axis2_options_set_enable_rest(options, env, AXIS2_TRUE);
- -

You can use the same code that you use with a SOAP call, and do REST style -invocation by just enabling REST using the option setting shown above.

- -

The default HTTP method used with REST is HTTP POST. If you need to change -it to the HTTP GET method, the following needs to be done.

-
axis2_options_set_http_method(options, env, AXIS2_HTTP_GET);
- -

Please have a look at the echo_rest sample for a complete -source code on how to use REST.

- - -

6. MTOM

- -

Axis2/C allows you to send and receive binary data with SOAP messages -using MTOM/XOP conventions. When sending and receiving attachments, you have -to use the service client (axis2_svc_client) API to perform the -send and receive operations, and provide or consume binary data in relation -to the AXIOM payloads.

- -

In order to send a binary attachment, you need to build the AXIOM payload -and attach the data handler with binary content to the payload.

-
<soapenv:Body>
-    <ns1:mtomSample xmlns:ns1="http://ws.apache.org/axis2/c/samples/mtom">
-        <ns1:fileName>test.jpg</ns1:fileName>
-        <ns1:image>
-            <xop:Include xmlns:xop="http://www.w3.org/2004/08/xop/include" 
-                href="cid:1.f399248e-8b39-1db1-3124-0015c53de2e5@apache.org"></xop:Include>
-        </ns1:image>
-    </ns1:mtomSample>
-</soapenv:Body>
- -

In the above sample payload shown, we place our image file as text within -an image element

-
image_om_ele = axiom_element_create(env, mtom_om_node, "image", ns1, &image_om_node);
-data_handler = axiom_data_handler_create(env, image_name, "image/jpeg");
-data_text = axiom_text_create_with_data_handler(env, image_om_node, data_handler, &data_om_node);
- -

When sending attachments, you can configure the client either to send the -attachment in the optimized format or non-optimized format.

- -

To do this, set the option axis2_options_set_enable_mtom(options, -env, AXIS2_TRUE);or the setting -<enableMtom>true</enableMtom> in axis2.xml

- -

If enableMTOM is set to True, the attachment is sent as it is, out of the -SOAP body, using MIME headers. Also the payload will have an XOP:Include -element, referring to the MIME part that contains the binary attachment. -Sending the attachment as it is, in pure binary format, is called binary -optimized format. In the case of binary non-optimized format, where -enableMTOM is False, the attachment content is sent in the payload itself, as -a base64 encoded string.

- -

Please have a look at the mtom sample for a complete example -on how to use MTOM.

- - -

7. Engaging a Module

- -

A module is a set of handlers that helps to extend the message processing -behavior of the Axis2/C engine. Modules have the concepts of being Available -and Engaged associated with them. Available means modules are deployed in the -system but not activated. They will be activated only after being engaged. -Every module comes with its own module.xml file . This module.xml file -specifies the module specific handlers and the phases into which the handlers -are to be placed in the handler chain. Some of the module specific handlers -may be put into system predefined phases. In that case, the module.xml file -should specify where to put the handlers relative to the others in that -phase. Sometimes a module may define its own phase. In that case, some of the -module specific handlers may be put into that phase. The handlers added to -the system predefined phases (global handlers) are invoked for every message -that comes to or goes out from the system. The handlers in the module -specific phase are invoked only for the messages invoking the operations that -engage that module. Engaging a module means correctly adding the handlers of -a particular module to one or more phases. Once the module is engaged, the -handlers and the operations defined in the module are added to the entity -that engaged them.

- -

Before engaging a module, the following steps have to be followed.

-
    -
  1. Write the module.xml file
  2. -
  3. Package the module libraries and the module.xml into a folder which has - the same name as the module
  4. -
  5. Deploy the folder in AXIS2C_INSTALL_DIR/modules
  6. -
  7. Add the module specific phases in the axis2.xml file
  8. -
- -

The following is an example of engaging a sample module called the logging -module with Axis2/C:

- -

Writing the module.xml File

- -

In the module.xml file, the handlers of the module and the phases to which -they are to be added have to be specified. Below is the module.xml file of -the sample logging module.

-
        <module name="logging" class="axis2_mod_log">
-           <inflow>
-              <handler name="LoggingInHandler" class="axis2_mod_log">
-                 <order phase="PreDispatch"/>
-              </handler>
-           </inflow>
-           <outflow>
-                 <handler name="LoggingOutHandler" class="axis2_mod_log">
-                   <order phase="MessageOut"/>
-                 </handler>
-           </outflow>
-           <Outfaultflow>
-                 <handler name="LoggingOutHandler" class="axis2_mod_log">
-                    <order phase="MessageOut"/>
-                 </handler>
-           </Outfaultflow>
-        </module>
- -

In the above shown module configuration file, the name of the module is -logging. There are two handlers in this module, the LoggingInHandler and the -LoggingOutHandler. The LoggingInHandler is placed into the PreDispatch phase -of the in flow. The LoggingOutHandler is placed into the MessageOut phase of -both the out flow and the fault out flow.

- -

Packaging and Deploying the Module

- -

The above module.xml file should be copied to a folder named "logging" -(because the module name is "logging") inside the AXIS2C_INSTALL_DIR/modules -folder. The module libraries containing the handler implementation should -also be copied to the same folder. According to the module.xml file shown -above, the name of the shared library file should be libaxis2_mod_log.so on -Linux and axis2_mod_log.dll on MS Windows.

- -

Adding Module Specific Phases to the axis2.xml File

- -

Module specific phases have to be added after the system predefined -phases. The following example shows where to add the module specific phases. -Look for the phaseOrder elements in the axis2.xml file. Note the -comment lines:

-
        <!-- User defined phases could be added here -->
-You can add user defined phases after the above comment line into any of the -flows. The type attribute of the phaseOrder element -indicates the flow. - -

For the logging module example, user defined phases are not required. All -the module specific handlers are added to system predefined phases as -specified in the module.xml file.

- -

Engaging a Module to a Services

- -

The following is an example of engaging the logging module to the echo -service. This can be done by simply adding <module ref -="logging"/> in the services.xml file of the echo service. This -informs the Axis2/C engine that the module "logging" should be engaged for -this service. The handlers inside the module will be executed in their -respective phases as described by the module.xml.

-
   <service name="echo">
-        <module ref ="logging"/>
-        <parameter name="ServiceClass" locked="xsd:false">echo</parameter>
-        <description>
-           This is a testing service, to test if the system is working or not.
-        </description>
-        <operation name="echoString">
-            <!--messageReceiver class="axis2_receivers" /-->
-            <parameter name="wsamapping" >
-                http://ws.apache.org/axis2/c/samples/echoString
-            </parameter>
-        </operation>
-    </service>
- -

One important thing to note here is that because the logging module's -handlers are placed into the global phases, even though the logging module is -engaged only to the echo service, the module will be engaged globally. This -is a feature of the Axis2 architecture, not a bug. When invoked, the handlers -in a module can check whether the module has been engaged to a particular -service, and act accordingly.

- -

Engaging a Module Globally

- -

If we want to engage a module for every service deployed in the Axis2/C -system, we can add the <module ref ="logging"/> entry in -the axis2.xml file. This will inform the Axis2/C engine to invoke the -handlers associated with the module for every message coming in or going out -for all the services deployed.

- -

Engaging a Module on the Client Side

- -

On the client side, if <module ref ="logging"/> is -added in the axis2.xml, the handlers specific to the logging module will be -invoked for every request the client sends and every response the client -receives. If only a particular client wants to engage the module, it can be -done by engaging the module programmatically. This can be done by adding the -following line in the client code after setting the options.

-
axis2_svc_client_engage_module(svc_client, env, "module-name");
- -

Remember to replace "module-name" with the name of the module you want to -engage. For example to engage the logging module you can use:

-
axis2_svc_client_engage_module(svc_client, env, "logging");
- - -

8. WS-Addressing

- -

WS-Addressing provides -mechanisms to address Web services and messages. With Axis2/C, you can use -both WS-Addressing version -1.0 as well as the submission version.

- -

WS-Addressing is implemented as a module in Axis2/C. Hence as explained in -the previous section, the addressing module can be engaged both on the client -side as well as on the server side.

- -

The WS-Addressing module can be globally engaged by adding the -<module ref="addressing"/> line to the axis2.xml file.

- -

The WS-Addressing module can also be programmatically engaged using the -following line of code with the service client API
-

-
axis2_svc_client_engage_module(svc_client, env, AXIS2_MODULE_ADDRESSING);
- -

WS-Addressing related options can be set using the -axis2_options struct instance on the client side. If the -addressing module is engaged, there are no options to be set on the server -side. The server will employ WS-Addressing if the incoming requests have -WS-Addressing headers.

- -

There is a mandatory requirement for using WS-Addressing on the client -side with Axis2/C. That is to set a WS-Addressing action that represents the -operation to be invoked. Example:

-
axis2_options_set_action(options,env,"http://ws.apache.org/axis2/c/samples/echoString")
- -

In addition to the action, which is mandatory, there are other -WS-Addressing related headers that can be sent in a message. Axis2/C supports -to set those headers as options at the client level. The following functions -are used to set them.

-
axis2_options_set_reply_to(options, env, reply_to)
- -

Sets the wsa:ReplyTo header. The ReplyTo header contains the -endpoint to send reply messages. The ReplyTo header is required when the -response comes in a separate channel (when using a dual channel).

-
axis2_options_set_fault_to(options, env, fault_to)
- -

Sets the wsa:FaultTo header. This contains the endpoint to -direct fault messages.

-
axis2_options_set_from(options, env, from)
- -

Sometimes the receiving endpoint requires to know the original sender of -the message. The wsa:From header is used in such cases. The -above function sets the From header.

-
axis2_options_set_relates_to(options, env, relates_to)
- -

Sets the wsa:RelatesTo header. This header contains a unique -ID which is the message ID of a previously exchanged message. It helps to -identify a previous message that relates to the current message.

- - -

9. Writing a Module

- -

A module is an extension point in the Axis2/C engine. Modules are -primarily used to WS-* specifications. In other words, quality of service -aspects such as security and reliable messaging can be implemented as modules -and deployed with the Axis2/C engine.
-A SOAP message can contain any number of header blocks. These header blocks -provide various processing information. In Axis2/C, these various header -blocks are processed by modules. Some times modules may add header blocks to -a SOAP message.

- -

Normally a module is a collection of handlers. So writing a module mainly -consists of writing handlers. There are two interfaces that are important -when writing a module. They are axis2_module and -axis2_handler.

- -

Every module should have three basic functions that are defined as -function pointer members of the axis2_module_ops struct. This -struct is defined in the axis2_module.h header file.

-
    -
  1. axis2_status_t (AXIS2_CALL * 
    -    init)(axis2_module_t *module, const
    -    axutil_env_t *env, 
    -    axis2_conf_ctx_t *conf_ctx, 
    -    axis2_module_desc_t *module_desc)
    -

    This function takes care of the module initialization.

    -
  2. -
  3. axis2_status_t (AXIS2_CALL * 
    -    shutdown)(axis2_module_t *module, 
    -    const axutil_env_t *env )
    -

    Shuts down and cleans up the module.

    -
  4. -
  5. axis2_status_t (AXIS2_CALL *
    -    fill_handler_create_func_map)(axis2_module_t *module, 
    -    const axutil_env_t *env )
    -

    This function fills the hash map of the handler create functions for - the module.

    -
  6. -
- -

The module developer has to implement functions with the above signatures -and assign them to the members of an axis2_module_ops struct -instance. Then that struct instance has to be assigned to the ops member of -an axis2_module struct instance.

- -

mod_log.c has the source for the -logging module. Please have a look at the axis2_mod_log_create -function in it to see how an axis2_module instance is allocated -and how the ops are initialized.

- -

The axis2_mod_log_fill_handler_create_func_map function adds -the handler create functions to the module's hash map, which stores the -handler create functions. In the mod_log.c example, the logging module adds -two handlers. The in handler and the out handler that deals with logging -along with the in-flow and out-flow respectively.

- -

Writing Handlers

- -

A handler is the smallest unit of execution in the Axis2/C engine's -execution flow. The engine can have two flows, the in-flow and the out-flow. -A flow is a collection of phases, and a phase in turn is a collection of -handlers. A handler is invoked when the phase within which it lives is -invoked. Axis2/C defines an interface called axis2_handler, -which is to be implemented by all the handlers.

- -

log_in_handler.c contains the -source code of the in-handler of the logging module. Please have a look at -the axutil_log_in_handler_create function to see how an -axis2_handler instance is created and how the invoke function -implementation, axis2_log_in_handler_invoke is assigned to the -axis2_handler invoke function pointer. The invoke is called to -do the actual work assigned to the handler. The phase that owns the handler -is responsible for calling the invoke function of the handler.

- -

log_out_handler.c contains -the source code of the out handler of the logging module. The implementation -is similar to the in handler, except that it is placed along the out-flow -when deployed.

- -

Writing the module.xml File

- -

After writing the module, the module.xml file should be written. The -module.xml file contains all the configuration details for a particular -module. Please see the sample module.xml -file for the logging module.

- -

Please see the Engaging a Module section -for more details on how to package and deploy the module.

- - -

10. Simple Axis Server

- -

Simple axis server is the inbuilt HTTP server of Axis2/C.
-

- -

Synopsis :

-
   axis2_http_server [-p PORT] [-t TIMEOUT] [-r REPO_PATH][-l LOG_LEVEL] [-f LOG_FILE]
- -

You can use the following options with simple axis server.

-
        -p PORT          port number to use, default port is 9090
-        -r REPO_PATH     repository path, default is ../
-        -t TIMEOUT       socket read timeout, default is 30 seconds
-        -l LOG_LEVEL     log level, available log levels:
-                         0 - critical    1 - errors 2 - warnings
-                         3 - information 4 - debug  5- trace
-                         Default log level is 4(debug).
-        -f LOG_FILE      log file, default is $AXIS2C_HOME/logs/axis2.log
-                         or axis2.log in current folder if AXIS2C_HOME not set
-        -h               display this help screen.
- -

Example :

-
   axis2_http_server -l 3 -p 8080 -r $AXIS2C_HOME  -f /dev/stderr
- - -

11. Deploying with Apache HTTP Server Version 2.x

- -

Linux Platform

- -

To build Axis2/C with the Apache HTTP server module, also called -mod_axis2, you need to provide the following configuration options on the -Linux platform:

-
./configure --with-apache2=[path to Apache2 include directory] [other configure options]
- -

NOTE: Some Apache2 distributions, specially -development versions, install APR (Apache Portable Run-time) include files in -a separate location. In that case, to build mod_axis2, use:

-
./configure --with-apache2=[path to Apache2 include directory] --with-apr=[path to APR include directory]
-            [other configure options]
- -

Then build the source tree as usual using:

-
    make
-    make install
- -

This will install mod_axis2.so into your AXIS2C_INSTALL_DIR/lib folder.

- -

MS Windows Platform

- -

On the MS Windows platform, you have to provide the Apache2 install -location in the configure.in file with the setting APACHE_BIN_DIR. -Example:

-
APACHE_BIN_DIR = "C:\Program Files\Apache Software Foundation\Apache2.2"
- -

Based on the Apache HTTP server version you are using, you also need to -set the setting APACHE_VERSION_IS_2_0_59 in the configure.in file. If you are -using Apache version 2.0.59, this setting should be set to 1, if the version -is above that, the setting should be 0. Example:

-
APACHE_VERSION_IS_2_0_59 = 0
- -

To build the source, you have to run the command

-
nmake axis2_apache_module
-This will build mod_axis2.dll and copy it to AXIS2C_INSTALL_DIR\lib directory. - -

Deploying mod_axis2

- -

NOTE: To execute some of the commands given below, -you might require super user privileges on your machine.

- -

Copy the mod_axis2 shared library (libmod_axis2.so.0.0.0 on Linux and mod_axis2.dll on MS -Windows) to the Apache2 modules directory as mod_axis2.so

- -

On Linux

-
    cp $AXIS2C_HOME/lib/libmod_axis2.so.0.0.0
-      /usr/lib/apache2/modules/mod_axis2.so
-On MS Windows -
   copy C:\axis2c\build\deploy\lib\mod_axis2.dll
-   C:\Apache2\modules\mod_axis2.so
- -

Edit the Apache2's configuration file (generally httpd.conf) and add the -following directives at the end of the file.

-
LoadModule axis2_module MOD_AXIS2_INSTALL_DIR
-Axis2RepoPath AXIS2C_INSTALL_DIR
-Axis2LogFile  PATH_TO_LOG_FILE
-Axis2LogLevel LOG_LEVEL 
-<Location /axis2>
-    SetHandler axis2_module
-</Location>
- -

Please note that you have to fine tune the above settings to mach your -system.
-
-MOD_AXIS2_INSTALL_DIR has to be replaced with the full path to mod_axis2.so, -for example, /usr/lib/apache2/modules/mod_axis2.so
-
-AXIS2C_INSTALL_DIR has to be replaced with the full path to Axis2/C -repository, for example, /usr/local/axis2. Note that repository path should -have read access to the daemon user account under which the Apache2 HTTPD -process is run.
-
-PATH_TO_LOG_FILE has to be replaced with the full path to where you wish to -have the Axis2/C log file, for example, /tmp/axis2.log. Note that the log -file path should have write access to the daemon user account under which the -Apache2 HTTPD process is run.
-
-LOG_LEVEL has to be replaced with one of the following values: crit, error, -warn, info, debug, trace. These log levels have the following meanings:

-
    -
  • crit - log critical errors
  • -
  • error - log errors and above
  • -
  • warn - log warnings and above
  • -
  • info - log information and above
  • -
  • debug - log debug information and above, this is the default log level - used
  • -
  • trace - log trace messages and above
  • -
- -

To ensure that everything works fine, start Apache2 (restart if it is -already running) and test whether the mod_axis2 module is loaded correctly by -accessing the URL: http://localhost/axis2/services.
-

- -

This should show the list of services deployed with Axis2/C. Then you -should be able to run clients against this endpoint. Example:

-
echo http://localhost/axis2/services/echo
- -

In case things are not working as expected, here are some tips on how to -troubleshoot:

-
    -
  • Double check the steps you followed in installing and configuring - mod_axis2. Check if the locations given in httpd.conf are correct, and - also check the folder permissions.
  • -
  • Have a look at the axis2.log file for clues as to what is going wrong. - You can set the log level to debug or trace to gather more - information
  • -
  • In case the axis2.log file is not written at all, there is a good - chance that mod_axis2 is crashing. You can have a look at the error.log - file of Apache2 to get an idea on what is going wrong. This file is - usually placed in the AXIS2C_INSTALL_DIR/logs folder.
  • -
- -

12. How to Configure the IIS module for -Axis2C

- -

Use the Axis2C vc project or makefile to buid the -component.

- -

In this document I assume that the mod_axis2_IIS.dll -is in the directory c:\axis2c\lib\mod_axis2_IIS.dll and axis2c_home -is c:\axis2c

- -

Add the following key to the -registery.

- -

HKEY_LOCAL_MACHINE\SOFTWARE\Apache Axis2c\IIS ISAPI -Redirector

- -

Add a string value with the name axis2c_home and a -value of c:\axis2c

- -

Add a string value with the name log_file and a value -of c:\axis2c\logs\axis2.log

- -

Add a string value with the name log_level. The value -can be either trace, error, info, critical, debug, or warning.

- -

Using the IIS management console, add a new virtual -directory to your IIS/PWS web site. The name of the virtual directory must be axis2. Its -physical path should be the directory in which you placed mod_axis2_IIS.dll (in our example it is -c:\axis2c\lib). When creating this new virtual directory, assign execute access to it.

- -

By using the IIS management console, add -mod_axis2_IIS.dll as a filter in your IIS/PWS web site.

- -

- -

13. Using SSL Client

- -

Building and Configuring the Client

- -

In order to allow an Axis2/C client to communicate with an SSL enabled -server, we need to compile Axis2/C with SSL support enabled.

- -

To build with SSL client support, first of all, make sure you have -installed OpenSSL on your machine. Then -you can start building with SSL client support. This can be achieved on Linux -by configuring Axis2/C with the --enable-openssl=yes option.

- -

Example
-%./configure --enable-openssl=yes --prefix=${AXIS2C_HOME}/deploy
-%make
-%make install
-

- -

On MS Windows, set ENABLE_SSL=1 in the -configure.in file and run the 'nmake all' command.

- - -

Creating the Client Certificate Chain File

- -

If you need SSL client authentication, Axis2/C requires you to provide the -client certificate and the private key file in a single file. Such a file -which contains both the certificate and relevant private key is called a -certificate chain file. Creating such a file is very easy. Assume that the -client certificate is stored in a file named client.crt and the -private key is stored in a file named client.key. Then the -certificate chain file can be created by concatenating the certificate file -and the private key file in that order, in to another file, say -client.pem.

- -

On Linux you can do this as follows: %cat client.crt client.key > -client.pem

- -

On MS Windows, you can do this by copying the contents of client.crt and -client.key files and saving them in a file named client.pem using Notepad.

- -

Configuration

- -

Uncomment the following in the axis2.xml file. This will -enable the SSL transport for Axis2/C, by recognizing "https" in an end point -reference (EPR).

-
<transportSender name="https" class="axis2_http_sender">
-        <parameter name="PROTOCOL" locked="false">HTTP/1.1</parameter>
-</transportSender>
- -

For the SSL client to work, the file containing the CA certificate should -be given as SERVER_CERT parameter in the axis2.xml file. If you -need client authentication, you can also set the parameters in the axis2.xml -file to specify the client certificate, private key, and the passphrase for -the client private key. Parameter names for these are:

- -

KEY_FILE - certificate chain file containing the client's -certificate and the private key (Please refer to the creating the client certificate chain file -section)
-SSL_PASSPHRASE - passphrase used to encrypt the private key -file.

- -

Example:

- -

<parameter -name="SERVER_CERT">/path/to/ca/certificate</parameter>
-<parameter -name="KEY_FILE">/path/to/client/certificate/chain/file</parameter>
-<parameter -name="SSL_PASSPHRASE">passphrase</parameter>

- -

For testing purposes, you can use the server's certificate instead of the -CA certificate. You can obtain this by running the command openssl -s_client -connect <servername>:<port> and copying the -portion of the output bounded by and including:

-
-----BEGIN CERTIFICATE-----
------END CERTIFICATE-----
- -

On Linux, if you run the following piece of code, the server certificate -will be saved to a file cert.pem:

-
echo |\
-openssl s_client -connect <servername>:<port> 2>&1 |\
-sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > cert.pem
- -

NOTE: Instead of setting these parameters in the axis2.xml -file, you can also set these parameters programmatically in your client -code.

- -

Configuring the Server

- -

Here we will only look at the configuration of the Apache HTTP Web server. -Refer to the Axis2/C -installation guide for information on deploying Axis2/C as an Apache -module.

- -

For more detailed information on SSL configuration, please refer to Apache2 SSL/TLS -documentation.

- -

In the httpd.conf file, add the following configuration -statements (in addition to other necessary configuration):

- -

SSLEngine on
-SSLCertificateFile /path/to/server/certificate/file
-SSLCertificateKeyFile /path/to/private/key/file
-SSLCACertificateFile /path/to/CA/certificate/file
-SSLVerifyClient require
-SSLVerifyDepth 1

- -

NOTE: The last two lines, SSLVerifyClient and -SSLVerifyDepth are only needed when you need client -authentication.

- - -

14. Using Proxy Support

- -

When using a proxy, there are two methods for specifying proxy -settings:

-
    -
  1. Specify proxy settings in axis2.xml
  2. -
  3. Provide proxy settings using service client API
  4. -
- -

Specifying Proxy Settings in axis2.xml

-
<transportSender name="http" class="axis2_http_sender">
-   <parameter name="PROTOCOL" locked="false">HTTP/1.1</parameter>
-   <parameter name="PROXY" proxy_host="127.0.0.1" proxy_port="8080" locked="true"/>
-</transportSender>
- -

Providing Proxy Settings Using Service Client API

- -

You can specify proxy settings using the following function with the -service client:

-
axis2_svc_client_set_proxy(axis2_svc_client_t *svc_client,
-        const axutil_env_t *env,
-        axis2_char_t *proxy_host,
-        axis2_char_t *proxy_port);
- - -

15. WSDL2C Tool

- -

WSDL2C tool that comes with Axis2/Java supports the generation of Axis2/C -stubs and skeletons for WSDL files. This is a Java tool that can be used to -generate C code that works with Axis2/C API. You should use Axis2/Java -SVN revision 529533 or later revisions. You can download the Axis2/Java nightly -build and use those binaries to generate code. Check out a basic -guide on the Java tool.

- -

Before you run the tool, make sure that all the .jar library files that -come with Axis2/Java are added to the CLASSPATH environment variable.

- -

Generating Service Skeletons

- -

The tool can be run with the following parameters and generate the service -skeleton and other required files with ADB (Axis Data Binding) support.

-
java org.apache.axis2.wsdl.WSDL2C -uri interoptestdoclitparameters.wsdl -ss -sd -d adb -u 
- -

To understand the meanings of the options used with the tool, please have -a look at the Java tool -documentation.

- -

If you need an XML in/out programming model, you can just ignore the data -binding support. To generate code with no data binding support, just replace --d adb -u, that was used in a previous command, with -d -none.

-
java org.apache.axis2.wsdl.WSDL2C -uri interoptestdoclitparameters.wsdl -ss -sd -d none
- -

The WSDL file, interoptestdoclitparameters.wsdl, used in the -above command examples can be found in <axis2_src_dir>/test/resources -directory.

- -

Once the code is generated, you have to implement the business logic for -the service. For this, locate the skeleton source file from the generated -files. To identify the locations where you can place your business logic in -line with the operations defined in the WSDL file that you used to generate -code, look for the comment lines:

-
/* Todo fill this with the necessary business logic */
-You can also go through the generated header files and understand the API in -line with the WSDL file that you used to generate the code. - -

Generating Client Stubs

- -

The WSDL2C code generator tool provides support for generating client -stubs as well. You can generate the required stubs from a given WSDL with the -other supporting files. Use following parameters to generate the Axis2/C -client stub code with ADB support.

-
java WSDL2C -uri interoptestdoclitparameters.wsdl -d adb -u
- -

In order to ignore the data binding support and use a raw XML in/out -model, just use the following parameters.

-
java WSDL2C -uri interoptestdoclitparameters.wsdl -d none
- -

Like in the case of service skeletons, you have to fill in the business -logic as required in the client stubs as well. To do this, go through the -header files generated and understand the API in line with the WSDL file that -you used to generate the code.

- - -

Appendix A

- -

axis2.xml

- -

The axis2.xml file is the configuration file for Axis2/C. It has 6 top -level elements. They are parameter, transportReceiver, transportSender, -module, phaseOrder and messageReceiver. The following sections -describe these elements, their sub elements, element attributes, possible -values, and their purpose.

- -

axisconfig is the root element of axis2.xml -file.

- - - - - - - - - - - - -
AttributePossible Values
nameAxis2/C
- -

parameter

- -

In Axis2/C, a parameter is a name value pair. Each and every top level -parameter available in the axis2.xml (direct sub elements of the root -element) will be stored as parameters as axis2_conf. Therefore, -the top level parameters set in the configuration file can be accessed via -the axis2_conf instance in the running system.

- -

Sub elements :- none

- -

Attributes :- name, locked

- - - - - - - - - - - - - - - - - -
AttributeDescription
nameName of the parameter. The table below shows possible values of the - name attribute and their description. - - - - - - - - - - - - - - - - - - - - -
ValueDescriptionPossible Text of Parameter Element
enableMTOMEnable MTOM support when sending binary attachmentstrue or false
enableRESTEnable REST supporttrue or false
-
lockedIndicates whether the parameter can be changed from the code. - Following are the possible values for the locked attribute. - - - - - - - - - - - - - - - - - -
ValueDescription
trueThe parameter cannot be changed from the code
falseThe parameter can be changed from the code.
-
- -

transportReceiver

- -

This element specifies the transport receiver details in an IN-OUT message -exchange scenario. The users can change the transport receiver port as they -wish.

- -

Attributes :- name, class

- - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
nameSpecifies which transport protocol is usedhttp (when using HTTP)
classSpecifies the shared library which implements the transport - interfaceName of the shared library. - -

Example:- On Linux if the value is given as foo then - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- -

- -

Sub elements :- can have zero or more parameter elements.

- -


-The following table shows possible parameter values.

- - - - - - - - - - - - - - - - - -
AttributeDescription
nameName of the parameter. - - - - - - - - - - - - - - - -
ValueDescriptionPossible Text of Parameter Element
portTransport listener portInteger specifying the port number
-
lockedwhether the parameter can be changed from the code - - - - - - - - - - - - - - - - - -
ValueDescription
trueParameter cannot be changed from the code
falseThe parameter can be changed from the code.
-
- -

- -

- -

transportSender

- -

This element specifies the transport senders used to send messages.

- -

Attributes :- name, class

- - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
nameSpecifies which transport protocol is used when sending - messageshttp(when using http)
classSpecifies the shared library which implements the transport - interface

Name of the shared library.

- -

Example:- On Linux if the value is given as foo then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- -

- -

Sub elements : can have zero or more parameter elements.

- -


-The following table shows possible parameter values.

- - - - - - - - - - - - - - - - - -
AttributeDescription
nameThe name of the parameter. - - - - - - - - - - - - - - - -
ValueDescriptionPossible text of parameter element
PROTOCOLTransport protocol usedProtocol version. Example:- HTTP /1.1, HTTP/1.0
-
lockedIndicates whether the parameter can be changed from the code. - - - - - - - - - - - - - - - - - -
ValueDescription
trueThe parameter cannot be changed from the code
falseThe parameter can be changed from the code.
-
- -

- -

module

- -

This element is optional. It is used when a particular module needs to be -engaged globally for every service deployed with Axis2/C.

- - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
refThe name of the module which is to be engaged globally.Name of the module. - -

Example : addressing

-
- -

- -

phaseOrder

- -

The order of phases in a particular execution chain has to be configured -using phaseOrder element.

- - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
typeThe flow to which the phase belongs inflow - -

outflow

- -

INfaultflow

- -

Outfaultflow

-
- -

A flow is a collection of handlers which is invoked for a particular -message. The types of flows are described below.

- - - - - - - - - - - - - - - - - - - - - - - - - -
FlowDescription
inflowCollection of handlers invoked for a message coming in to the - system.
outflowCollection of handlers invoked for a message going out of the - system.
INfaultflowCollection of handlers invoked for an incoming fault message.
OutfaultflowCollection of handlers invoked for an outgoing fault message.
- -

Sub elements : phase: represents the available phases in the -execution chain

- -

The system predefined phases cannot be changed.

- -

The system predefined phases are,

-
    -
  • Transport
  • -
  • PreDispatch
  • -
  • Dispatch
  • -
  • PostDispatch
  • -
  • MessageOut
  • -
- - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
nameSpecifies the name of the phaseTransportIn, Dispatch, PreDispatch, PostDispatch, MessageOut - -

User defined phases (can have a user defined name)

-
- -

Sub elements of phase element: handler

- - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
nameSpecifies the handler name. Phase may contain zero or more - handlers.Based on the handler name. - -

Example: AddressingbasedDispatcher, RequestURIbaseddispatcher

-
classSpecifies the shared library which implements the handler

Name of the shared library.

- -

Example: On Linux, if the value is given as foo, then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- -

messageReceiver

- -

- - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
mepMessage Exchange PatternIN-OUT, IN-ONLY
classSpecify the shared library which implements the transport interface. - -

If not specified, the Axis2/C default message receiver is used.

-
Name of the shared library. - -

Example: On Linux, if the value is given as foo, then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- - -

Appendix B

- -

services.xml

- -

Configuration of a service is specified using a services.xml. Each service -or service archive file needs to have a services.xml in order to be a valid -service. The following sections describe the elements of the services.xml -file.

- -

If services.xml describes a single service, the root element is -service. If it is describing a service group, then the root element -is serviceGroup. The service element will be a child -element of serviceGroup if there are multiple services specified in -services.xml.

- -

service / serviceGroup

- - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
nameName of the service or service group.Depends on the service or the service group.
- Examples: echo, sg_math
- -

- -

description

- -

This is optional. This element can be used to describe the service in a -human readable format.

- -

- -

module

- -

This is optional. Can be used to engage modules at service level.

- - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
refName of the module which is to be engaged for the serviceName of the module which is to be engaged at service level.
- -

- -

- -

parameter

- -

The service element can have any number of parameters as sub elements.

- - - - - - - - - - - - - - - - - - - - - - - -
AttributesDescriptionPossible ValuesValue of the Text in the Parameter Element
nameSpecifies the name of the shared library that holds the service - implementationserviceClassthe service name. Example: echo
lockedIndicates whether the parameter can be changed from the codetrue / false
- -

- -

operation

- -

The operations of the service are specified using operation elements.

- - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
namename of the operationExample: echoString
- -

Sub elements of operation: parameter elements can be -present as sub elements. Zero or more parameters may be present.

- - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible ValueParameter Value
nameWS-Addressing action mapping to the operation.wsamappingA URL representing the WS-Addressing action corresponding to the - operation
- -

- -

messageReceiver

- -

An operation specific message receiver is specified from this. This is -optional.

- - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
classShared library with the message receiver implementationName of the shared library. - -

Example: On Linux, if the value is given as foo, then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- - -

Appendix C

- -

module.xml

- -

The module.xml file provides the configuration details for a particular -module in Axis2/C. The top level element is module.

- -

module

- - - - - - - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
nameName of the moduleExample- addressing
classSpecifies the shared library which implements the module.Name of the shared library. - -

Example- On Linux, if the value is given as foo, then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- -

- -

Other elements are child elements of module.

- -

- -

parameter

- -

Any number of parameters can be present, depending on the module.

- - - - - - - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
nameName of the parameterDepends on the module
lockedIndicates whether the parameter can be changed from the codetrue - cannot be changed - -

false - can be changed

-
- -

- -

Description

- -

Describes the behavior of the module. This element is optional and has no -attributes or sub elements.

- -

inflow

- -

Encapsulates details added to the in-flow by the module. Zero or one -element is possible and does not have any attributes.

- -

Sub elements of inflow : handler, contains details about -the module specific handlers added to a particular flow. Zero or more -handlers can be added.

- - - - - - - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
nameName of the handlerDepends on the handlers in the module.
classSpecifies the shared library which implements the handler

Name of the shared library.

- -

Example: On Linux, if the value is given as foo, then the - shared library is libfoo.so.

- -

On MS Windows, foo.dll.

-
- -

- -

sub elements of handler : order, specifies where to put -a handler in a particular phase.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionPossible Values
phaseThe name of the phase the handler belongs todepends on the handler
phaseLastIndicates that the handler is the last handler of the phasetrue
phaseFirstIndicates that the handler is the first handler of the phase.true
beforeHandler should be invoked before the handler, which is specified by - the before handlerhandler name
afterHandler should be invoked after the handler, which is specified by - the after handlerhandler name
- -

From the above attributes, phase is compulsory. Given below are -combinations possible from the other four attributes.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CombinationDescription
phaseLastIndicates that the handler is the last handler of the phase
phasefirstIndicates that the handler is the first handler of the phase.
beforeHandler should be invoked before the handler, which is specified by - the before handler
afterHandler should be invoked after the handler, which is specified by - the after handler
before & afterHandler should be invoked before the handler specified by the - before handler, and - -

after the handler specified by the after handler.

-
- -

outflow, INfaultflow, OUTfaultflow elements -have the same syntax as that of inflow.

- -

operation

- -

This is used when a module wants to add operations to a service that -engages the module.

- - - - - - - - - - - - - - - - - - - - -
AttributesDescriptionPossible Values
nameName of the operation (compulsory)Depends on the module
mepMessage Exchange PatternIN-OUT, IN-ONLY
- -

Sub elements of operation : Any number of parameters can be -included as sub elements in the operation element.

- -

The messageReceiver parameter specifies the message receiver the -message is intended for. If it is not set, the default message receiver is -used.

- -

- - -

Appendix D

- -

axis2_options

- -

This section describes various types of options that can be set with -axis2_options. These options are used by the service client -before sending messages.

- -

axis2_options_set_action(options, env, action)

- -

Sets the WS-Addressing action that is to be set in the addressing SOAP -headers.

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
axis2_options_t *optionsPointer to the options struct
const axutil_env_t *envPointer to the environment struct
const axis2_char_t *actionPointer to the action string
- -

- -

axis2_options_set_fault_to(options, env, fault_to)

- -

Sets the end point reference which may receive the message in a case of a -SOAP fault.

- - - - - - - - - - - - - - - - - - - - - -
ParameterDescription
axis2_options_t *optionsPointer to the options struct.
const axutil_env_t *envPointer to the environment struct.
axis2_endpoint_ref_t *fault_toPointer to the endpoint reference struct representing the fault to - address.
- -

- -

axis2_options_set_from(options, env, from)

- -

Some services need to know the source from which the message comes. This -option sets the from endpoint

- - [... 3499 lines stripped ...] --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org