📄 servicelocator.java
字号:
/**
* ServiceLocator.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package ActionWebService;
public class ServiceLocator extends org.apache.axis.client.Service implements ActionWebService.Service {
public ServiceLocator() {
}
public ServiceLocator(org.apache.axis.EngineConfiguration config) {
super(config);
}
public ServiceLocator(java.lang.String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException {
super(wsdlLoc, sName);
}
// Use to get a proxy class for ItemPort
private java.lang.String ItemPort_address = "http://192.168.0.29:3000/l_ws/api";
public java.lang.String getItemPortAddress() {
return ItemPort_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String ItemPortWSDDServiceName = "ItemPort";
public java.lang.String getItemPortWSDDServiceName() {
return ItemPortWSDDServiceName;
}
public void setItemPortWSDDServiceName(java.lang.String name) {
ItemPortWSDDServiceName = name;
}
public ActionWebService.ItemPort getItemPort() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(ItemPort_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getItemPort(endpoint);
}
public ActionWebService.ItemPort getItemPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
ActionWebService.ItemBindingStub _stub = new ActionWebService.ItemBindingStub(portAddress, this);
_stub.setPortName(getItemPortWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
public void setItemPortEndpointAddress(java.lang.String address) {
ItemPort_address = address;
}
// Use to get a proxy class for CategoryPort
private java.lang.String CategoryPort_address = "http://192.168.0.29:3000/l_ws/api";
public java.lang.String getCategoryPortAddress() {
return CategoryPort_address;
}
// The WSDD service name defaults to the port name.
private java.lang.String CategoryPortWSDDServiceName = "CategoryPort";
public java.lang.String getCategoryPortWSDDServiceName() {
return CategoryPortWSDDServiceName;
}
public void setCategoryPortWSDDServiceName(java.lang.String name) {
CategoryPortWSDDServiceName = name;
}
public ActionWebService.CategoryPort getCategoryPort() throws javax.xml.rpc.ServiceException {
java.net.URL endpoint;
try {
endpoint = new java.net.URL(CategoryPort_address);
}
catch (java.net.MalformedURLException e) {
throw new javax.xml.rpc.ServiceException(e);
}
return getCategoryPort(endpoint);
}
public ActionWebService.CategoryPort getCategoryPort(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
try {
ActionWebService.CategoryBindingStub _stub = new ActionWebService.CategoryBindingStub(portAddress, this);
_stub.setPortName(getCategoryPortWSDDServiceName());
return _stub;
}
catch (org.apache.axis.AxisFault e) {
return null;
}
}
public void setCategoryPortEndpointAddress(java.lang.String address) {
CategoryPort_address = address;
}
/**
* 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 (ActionWebService.ItemPort.class.isAssignableFrom(serviceEndpointInterface)) {
ActionWebService.ItemBindingStub _stub = new ActionWebService.ItemBindingStub(new java.net.URL(ItemPort_address), this);
_stub.setPortName(getItemPortWSDDServiceName());
return _stub;
}
if (ActionWebService.CategoryPort.class.isAssignableFrom(serviceEndpointInterface)) {
ActionWebService.CategoryBindingStub _stub = new ActionWebService.CategoryBindingStub(new java.net.URL(CategoryPort_address), this);
_stub.setPortName(getCategoryPortWSDDServiceName());
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);
}
java.lang.String inputPortName = portName.getLocalPart();
if ("ItemPort".equals(inputPortName)) {
return getItemPort();
}
else if ("CategoryPort".equals(inputPortName)) {
return getCategoryPort();
}
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("urn:ActionWebService", "Service");
}
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("urn:ActionWebService", "ItemPort"));
ports.add(new javax.xml.namespace.QName("urn:ActionWebService", "CategoryPort"));
}
return ports.iterator();
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(java.lang.String portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
if ("ItemPort".equals(portName)) {
setItemPortEndpointAddress(address);
}
else
if ("CategoryPort".equals(portName)) {
setCategoryPortEndpointAddress(address);
}
else
{ // Unknown Port Name
throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName);
}
}
/**
* Set the endpoint address for the specified port name.
*/
public void setEndpointAddress(javax.xml.namespace.QName portName, java.lang.String address) throws javax.xml.rpc.ServiceException {
setEndpointAddress(portName.getLocalPart(), address);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -