alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Axis 2 example source code file (RPCLitSWA.java)

This example Axis 2 source code file (RPCLitSWA.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Axis 2 tags/keywords

holder, holder, rpclitswa, rpclitswa, soapbinding, string, string, webmethod, webparam, webparam, webservice, xml

The Axis 2 RPCLitSWA.java source code


package org.apache.axis2.jaxws.proxy.rpclitswa.sei;

import javax.activation.DataHandler;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebParam.Mode;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
import javax.xml.ws.Holder;


/**
 * This class was generated by the JAXWS SI.
 * JAX-WS RI 2.0_01-b15-fcs
 * Generated source version: 2.0
 * 
 */
@WebService(name = "RPCLitSWA", targetNamespace = "http://org/apache/axis2/jaxws/proxy/rpclitswa", wsdlLocation = "RPCLitSWA.wsdl")
@SOAPBinding(style = Style.RPC)
public interface RPCLitSWA {


    /**
     * 
     * @param request
     * @param dummyAttachmentINOUT
     * @param dummyAttachmentOUT
     * @param response
     * @param dummyAttachmentIN
     */
    @WebMethod
    public void echo(
        @WebParam(name = "request", partName = "request")
        String request,
        @WebParam(name = "dummyAttachmentIN", partName = "dummyAttachmentIN")
        String dummyAttachmentIN,
        @WebParam(name = "dummyAttachmentINOUT", mode = Mode.INOUT, partName = "dummyAttachmentINOUT")
        Holder<DataHandler> dummyAttachmentINOUT,
        @WebParam(name = "response", mode = Mode.OUT, partName = "response")
        Holder<String> response,
        @WebParam(name = "dummyAttachmentOUT", mode = Mode.OUT, partName = "dummyAttachmentOUT")
        Holder<String> dummyAttachmentOUT);

}

Other Axis 2 examples (source code examples)

Here is a short list of links related to this Axis 2 RPCLitSWA.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.