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

Axis 2 example source code file (RPCLitSWAService.java)

This example Axis 2 source code file (RPCLitSWAService.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

malformedurlexception, net, network, qname, qname, rpclitswa, rpclitswa, rpclitswaervice_wsdl_location, rpclitswaservice, rpclitswaservice, service, url, url, webendpoint, webserviceclient, xml

The Axis 2 RPCLitSWAService.java source code

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

import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;


/**
 * This class was generated by the JAXWS SI.
 * JAX-WS RI 2.0_01-b15-fcs
 * Generated source version: 2.0
 * 
 */
@WebServiceClient(name = "RPCLitSWAService", targetNamespace = "http://org/apache/axis2/jaxws/proxy/rpclitswa", wsdlLocation = "rpclitswa.wsdl")
public class RPCLitSWAService
    extends Service
{

    private final static URL RPCLITSWAERVICE_WSDL_LOCATION;

    static {
        URL url = null;
        try {
            url = new URL("file:/C:/defects/rpclitswa.wsdl");
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
        RPCLITSWAERVICE_WSDL_LOCATION = url;
    }

    public RPCLitSWAService(URL wsdlLocation, QName serviceName) {
        super(wsdlLocation, serviceName);
    }

    public RPCLitSWAService() {
        super(RPCLITSWAERVICE_WSDL_LOCATION, new QName("http://org/apache/axis2/jaxws/proxy/rpclitswa", "RPCLitSWAService"));
    }

    /**
     * 
     * @return
     *     returns RPCLitSWA
     */
    @WebEndpoint(name = "RPCLitSWA")
    public RPCLitSWA getRPCLitSWA() {
        return (RPCLitSWA)super.getPort(new QName("http://org/apache/axis2/jaxws/proxy/rpclitswa", "RPCLitSWA"), RPCLitSWA.class);
    }

}

Other Axis 2 examples (source code examples)

Here is a short list of links related to this Axis 2 RPCLitSWAService.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.