📄 service1soapstub.java
字号:
/**
* Service1SoapStub.java
*
* This file was auto-generated from WSDL
* by the Apache Axis Wsdl2java emitter.
*/
package com.trwest;
public class Service1SoapStub extends org.apache.axis.client.Stub implements com.trwest.Service1Soap {
private java.util.Vector cachedSerClasses = new java.util.Vector();
private java.util.Vector cachedSerQNames = new java.util.Vector();
private java.util.Vector cachedSerFactories = new java.util.Vector();
private java.util.Vector cachedDeserFactories = new java.util.Vector();
public Service1SoapStub() throws org.apache.axis.AxisFault {
this(null);
}
public Service1SoapStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
this(service);
super.cachedEndpoint = endpointURL;
}
public Service1SoapStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
try {
if (service == null) {
super.service = new org.apache.axis.client.Service();
} else {
super.service = service;
}
Class cls;
javax.xml.rpc.namespace.QName qName;
Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class;
Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class;
Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class;
Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class;
Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class;
Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class;
Class simplesf = org.apache.axis.encoding.ser.SimpleNonPrimitiveSerializerFactory.class;
Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class;
qName = new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "CityState");
cachedSerQNames.add(qName);
cls = com.trwest.CityState.class;
cachedSerClasses.add(cls);
cachedSerFactories.add(beansf);
cachedDeserFactories.add(beandf);
}
catch(java.lang.Exception t) {
throw org.apache.axis.AxisFault.makeFault(t);
}
}
private org.apache.axis.client.Call createCall() throws java.rmi.RemoteException {
try {
org.apache.axis.client.Call call =
(org.apache.axis.client.Call) super.service.createCall();
if (super.maintainSessionSet) {
call.setMaintainSession(super.maintainSession);
}
if (super.cachedUsername != null) {
call.setUsername(super.cachedUsername);
}
if (super.cachedPassword != null) {
call.setPassword(super.cachedPassword);
}
if (super.cachedEndpoint != null) {
call.setTargetEndpointAddress(super.cachedEndpoint);
}
if (super.cachedTimeout != null) {
call.setTimeout(super.cachedTimeout);
}
java.util.Enumeration keys = super.cachedProperties.keys();
while (keys.hasMoreElements()) {
String key = (String) keys.nextElement();
call.setProperty(key, super.cachedProperties.get(key));
}
// All the type mapping information is registered
// when the first call is made.
// The type mapping information is actually registered in
// the TypeMappingRegistry of the service, which
// is the reason why registration is only needed for the first call.
if (firstCall()) {
// must set encoding style before registering serializers
call.setEncodingStyle(null);
for (int i = 0; i < cachedSerFactories.size(); ++i) {
Class cls = (Class) cachedSerClasses.get(i);
javax.xml.rpc.namespace.QName qName =
(javax.xml.rpc.namespace.QName) cachedSerQNames.get(i);
Class sf = (Class)
cachedSerFactories.get(i);
Class df = (Class)
cachedDeserFactories.get(i);
call.registerTypeMapping(cls, qName, sf, df, false);
}
}
return call;
}
catch (Throwable t) {
throw new org.apache.axis.AxisFault("Failure trying to get the Call object", t);
}
}
public java.lang.String findZipPlus4(java.lang.String address, java.lang.String city, java.lang.String state) throws java.rmi.RemoteException{
if (super.cachedEndpoint == null) {
throw new org.apache.axis.NoEndPointException();
}
org.apache.axis.client.Call call = createCall();
javax.xml.rpc.namespace.QName p0QName = new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "Address");
call.addParameter(p0QName, new javax.xml.rpc.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, javax.xml.rpc.ParameterMode.IN);
javax.xml.rpc.namespace.QName p1QName = new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "City");
call.addParameter(p1QName, new javax.xml.rpc.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, javax.xml.rpc.ParameterMode.IN);
javax.xml.rpc.namespace.QName p2QName = new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "State");
call.addParameter(p2QName, new javax.xml.rpc.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(new javax.xml.rpc.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"));
call.setUseSOAPAction(true);
call.setSOAPActionURI("http://trwest.com/webservices/FindZipPlus4");
call.setEncodingStyle(null);
call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
call.setOperationStyle("wrapped");
call.setOperationName(new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "FindZipPlus4"));
Object resp = call.invoke(new Object[] {address, city, state});
if (resp instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)resp;
}
else {
try {
return (java.lang.String) resp;
} catch (java.lang.Exception e) {
return (java.lang.String) org.apache.axis.utils.JavaUtils.convert(resp, java.lang.String.class);
}
}
}
public com.trwest.CityState findCityState(java.lang.String zip) throws java.rmi.RemoteException{
if (super.cachedEndpoint == null) {
throw new org.apache.axis.NoEndPointException();
}
org.apache.axis.client.Call call = createCall();
javax.xml.rpc.namespace.QName p0QName = new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "zip");
call.addParameter(p0QName, new javax.xml.rpc.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), java.lang.String.class, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "CityState"));
call.setUseSOAPAction(true);
call.setSOAPActionURI("http://trwest.com/webservices/FindCityState");
call.setEncodingStyle(null);
call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE);
call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE);
call.setOperationStyle("wrapped");
call.setOperationName(new javax.xml.rpc.namespace.QName("http://trwest.com/webservices/", "FindCityState"));
Object resp = call.invoke(new Object[] {zip});
if (resp instanceof java.rmi.RemoteException) {
throw (java.rmi.RemoteException)resp;
}
else {
try {
return (com.trwest.CityState) resp;
} catch (java.lang.Exception e) {
return (com.trwest.CityState) org.apache.axis.utils.JavaUtils.convert(resp, com.trwest.CityState.class);
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -