blob: 0280de6a250b012ffd706de3305e312178fc2f95 [file] [log] [blame]
package org.apache.axis2.jaxws.sample.addnumbers;
import java.io.File;
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 = "AddNumbersService", targetNamespace = "http://duke/org", wsdlLocation = "AddNumbers1.wsdl")
public class AddNumbersService
extends Service
{
private final static URL ADDNUMBERSSERVICE_WSDL_LOCATION;
private static String wsdlLocation="/test/org/apache/axis2/jaxws/sample/addnumbers/META-INF/AddNumbers.wsdl";
static {
URL url = null;
try {
try{
String baseDir = new File(".").getCanonicalPath();
wsdlLocation = new File(baseDir + wsdlLocation).getAbsolutePath();
}catch(Exception e){
e.printStackTrace();
}
File file = new File(wsdlLocation);
url = file.toURL();
} catch (MalformedURLException e) {
e.printStackTrace();
}
ADDNUMBERSSERVICE_WSDL_LOCATION = url;
}
public AddNumbersService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public AddNumbersService() {
super(ADDNUMBERSSERVICE_WSDL_LOCATION, new QName("http://duke/org", "AddNumbersService"));
}
/**
*
* @return
* returns AddNumbersPortType
*/
@WebEndpoint(name = "AddNumbersPort")
public AddNumbersPortType getAddNumbersPort() {
return (AddNumbersPortType)super.getPort(new QName("http://duke/org", "AddNumbersPort"), AddNumbersPortType.class);
}
}