/**
* TravelServiceServiceLocator.java
*
* This file was auto-generated from WSDL
* by the Apache Axis WSDL2Java emitter.
*/
package net.sourceforge.bexee.Travel;
public class TravelServiceServiceLocator extends org.apache.axis.client.Service implements net.sourceforge.bexee.Travel.TravelServiceService {
// Use to get a proxy class for TravelService
private final java.lang.String TravelService_address = "http://localhost:8080/axis/services/TravelService";
public java.lang.String getTravelServiceAddress() {
return TravelService_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String TravelServiceWSDDServiceName = "TravelService";
public java.lang.String getTravelServiceWSDDServiceName() {
return TravelServiceWSDDServiceName;
}
public void setTravelServiceWSDDServiceName(java.lang.String name) {
TravelServiceWSDDServiceName = name;
}
public net.sourceforge.bexee.Travel.TravelService getTravelService() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(TravelService_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getTravelService(endpoint);
}
public net.sourceforge.bexee.Travel.TravelService getTravelService(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
net.sourceforge.bexee.Travel.TravelServiceSoapBindingStub _stub = new net.sourceforge.bexee.Travel.TravelServiceSoapBindingStub(portAddress, this);
_stub.setPortName(getTravelServiceWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
try {
if (net.sourceforge.bexee.Travel.TravelService.class.isAssignableFrom(serviceEndpointInterface)) {
net.sourceforge.bexee.Travel.TravelServiceSoapBindingStub _stub = new net.sourceforge.bexee.Travel.TravelServiceSoapBindingStub(new java.net.URL(TravelService_address), this);
_stub.setPortName(getTravelServiceWSDDServiceName());
return _stub;
}
}
catch (java.lang.Throwable t) {
throw new javax.xml.rpc.ServiceException(t);
}
throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName()));
}
/**
* For the given interface, get the stub implementation.
* If this service has no port for the given interface,
* then ServiceException is thrown.
*/
public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException {
if (portName == null) {
return getPort(serviceEndpointInterface);
}
String inputPortName = portName.getLocalPart();
if ("TravelService".equals(inputPortName)) {
return getTravelService();
}
else {
java.rmi.Remote _stub = getPort(serviceEndpointInterface);
((org.apache.axis.client.Stub) _stub).setPortName(portName);
return _stub;
}
}
public javax.xml.namespace.QName getServiceName() {
return new javax.xml.namespace.QName("http://bexee.sourceforge.net/Travel", "TravelServiceService");
}
private java.util.HashSet ports = null;
public java.util.Iterator getPorts() {
if (ports == null) {
ports = new java.util.HashSet();
ports.add(new javax.xml.namespace.QName("TravelService"));
}
return ports.iterator();
}
}
|