Commit 381923c87be1ccc774b8cade74c06949c9c3d5bc
1 parent
d8ec2134
青浦时刻表上传代码依赖
Showing
6 changed files
with
1213 additions
and
0 deletions
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/Results.java
0 → 100644
| 1 | +/** | |
| 2 | + * Results.java | |
| 3 | + * | |
| 4 | + * This file was auto-generated from WSDL | |
| 5 | + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. | |
| 6 | + */ | |
| 7 | + | |
| 8 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 9 | + | |
| 10 | +public class Results implements java.io.Serializable { | |
| 11 | + private boolean success; | |
| 12 | + | |
| 13 | + private String message; | |
| 14 | + | |
| 15 | + public Results() { | |
| 16 | + } | |
| 17 | + | |
| 18 | + public Results( | |
| 19 | + boolean success, | |
| 20 | + String message) { | |
| 21 | + this.success = success; | |
| 22 | + this.message = message; | |
| 23 | + } | |
| 24 | + | |
| 25 | + | |
| 26 | + /** | |
| 27 | + * Gets the success value for this Results. | |
| 28 | + * | |
| 29 | + * @return success | |
| 30 | + */ | |
| 31 | + public boolean isSuccess() { | |
| 32 | + return success; | |
| 33 | + } | |
| 34 | + | |
| 35 | + | |
| 36 | + /** | |
| 37 | + * Sets the success value for this Results. | |
| 38 | + * | |
| 39 | + * @param success | |
| 40 | + */ | |
| 41 | + public void setSuccess(boolean success) { | |
| 42 | + this.success = success; | |
| 43 | + } | |
| 44 | + | |
| 45 | + | |
| 46 | + /** | |
| 47 | + * Gets the message value for this Results. | |
| 48 | + * | |
| 49 | + * @return message | |
| 50 | + */ | |
| 51 | + public String getMessage() { | |
| 52 | + return message; | |
| 53 | + } | |
| 54 | + | |
| 55 | + | |
| 56 | + /** | |
| 57 | + * Sets the message value for this Results. | |
| 58 | + * | |
| 59 | + * @param message | |
| 60 | + */ | |
| 61 | + public void setMessage(String message) { | |
| 62 | + this.message = message; | |
| 63 | + } | |
| 64 | + | |
| 65 | + private Object __equalsCalc = null; | |
| 66 | + public synchronized boolean equals(Object obj) { | |
| 67 | + if (!(obj instanceof Results)) return false; | |
| 68 | + Results other = (Results) obj; | |
| 69 | + if (obj == null) return false; | |
| 70 | + if (this == obj) return true; | |
| 71 | + if (__equalsCalc != null) { | |
| 72 | + return (__equalsCalc == obj); | |
| 73 | + } | |
| 74 | + __equalsCalc = obj; | |
| 75 | + boolean _equals; | |
| 76 | + _equals = true && | |
| 77 | + this.success == other.isSuccess() && | |
| 78 | + ((this.message==null && other.getMessage()==null) || | |
| 79 | + (this.message!=null && | |
| 80 | + this.message.equals(other.getMessage()))); | |
| 81 | + __equalsCalc = null; | |
| 82 | + return _equals; | |
| 83 | + } | |
| 84 | + | |
| 85 | + private boolean __hashCodeCalc = false; | |
| 86 | + public synchronized int hashCode() { | |
| 87 | + if (__hashCodeCalc) { | |
| 88 | + return 0; | |
| 89 | + } | |
| 90 | + __hashCodeCalc = true; | |
| 91 | + int _hashCode = 1; | |
| 92 | + _hashCode += (isSuccess() ? Boolean.TRUE : Boolean.FALSE).hashCode(); | |
| 93 | + if (getMessage() != null) { | |
| 94 | + _hashCode += getMessage().hashCode(); | |
| 95 | + } | |
| 96 | + __hashCodeCalc = false; | |
| 97 | + return _hashCode; | |
| 98 | + } | |
| 99 | + | |
| 100 | + // Type metadata | |
| 101 | + private static org.apache.axis.description.TypeDesc typeDesc = | |
| 102 | + new org.apache.axis.description.TypeDesc(Results.class, true); | |
| 103 | + | |
| 104 | + static { | |
| 105 | + typeDesc.setXmlType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 106 | + org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); | |
| 107 | + elemField.setFieldName("success"); | |
| 108 | + elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "success")); | |
| 109 | + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "boolean")); | |
| 110 | + elemField.setNillable(false); | |
| 111 | + typeDesc.addFieldDesc(elemField); | |
| 112 | + elemField = new org.apache.axis.description.ElementDesc(); | |
| 113 | + elemField.setFieldName("message"); | |
| 114 | + elemField.setXmlName(new javax.xml.namespace.QName("http://tempuri.org/", "message")); | |
| 115 | + elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); | |
| 116 | + elemField.setMinOccurs(0); | |
| 117 | + elemField.setNillable(false); | |
| 118 | + typeDesc.addFieldDesc(elemField); | |
| 119 | + } | |
| 120 | + | |
| 121 | + /** | |
| 122 | + * Return type metadata object | |
| 123 | + */ | |
| 124 | + public static org.apache.axis.description.TypeDesc getTypeDesc() { | |
| 125 | + return typeDesc; | |
| 126 | + } | |
| 127 | + | |
| 128 | + /** | |
| 129 | + * Get Custom Serializer | |
| 130 | + */ | |
| 131 | + public static org.apache.axis.encoding.Serializer getSerializer( | |
| 132 | + String mechType, | |
| 133 | + Class _javaType, | |
| 134 | + javax.xml.namespace.QName _xmlType) { | |
| 135 | + return | |
| 136 | + new org.apache.axis.encoding.ser.BeanSerializer( | |
| 137 | + _javaType, _xmlType, typeDesc); | |
| 138 | + } | |
| 139 | + | |
| 140 | + /** | |
| 141 | + * Get Custom Deserializer | |
| 142 | + */ | |
| 143 | + public static org.apache.axis.encoding.Deserializer getDeserializer( | |
| 144 | + String mechType, | |
| 145 | + Class _javaType, | |
| 146 | + javax.xml.namespace.QName _xmlType) { | |
| 147 | + return | |
| 148 | + new org.apache.axis.encoding.ser.BeanDeserializer( | |
| 149 | + _javaType, _xmlType, typeDesc); | |
| 150 | + } | |
| 151 | + | |
| 152 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/WebService.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebService.java | |
| 3 | + * | |
| 4 | + * This file was auto-generated from WSDL | |
| 5 | + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. | |
| 6 | + */ | |
| 7 | + | |
| 8 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 9 | + | |
| 10 | +public interface WebService extends javax.xml.rpc.Service { | |
| 11 | + public String getWebServiceSoapAddress(); | |
| 12 | + | |
| 13 | + public com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoap getWebServiceSoap() throws javax.xml.rpc.ServiceException; | |
| 14 | + | |
| 15 | + public com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoap getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException; | |
| 16 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/WebServiceLocator.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebServiceLocator.java | |
| 3 | + * | |
| 4 | + * This file was auto-generated from WSDL | |
| 5 | + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. | |
| 6 | + */ | |
| 7 | + | |
| 8 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 9 | + | |
| 10 | +public class WebServiceLocator extends org.apache.axis.client.Service implements WebService { | |
| 11 | + | |
| 12 | + public WebServiceLocator() { | |
| 13 | + } | |
| 14 | + | |
| 15 | + | |
| 16 | + public WebServiceLocator(org.apache.axis.EngineConfiguration config) { | |
| 17 | + super(config); | |
| 18 | + } | |
| 19 | + | |
| 20 | + public WebServiceLocator(String wsdlLoc, javax.xml.namespace.QName sName) throws javax.xml.rpc.ServiceException { | |
| 21 | + super(wsdlLoc, sName); | |
| 22 | + } | |
| 23 | + | |
| 24 | + // Use to get a proxy class for WebServiceSoap | |
| 25 | + private String WebServiceSoap_address = "http://218.242.195.76:8411/WebService_test/WebService.asmx"; | |
| 26 | + | |
| 27 | + public String getWebServiceSoapAddress() { | |
| 28 | + return WebServiceSoap_address; | |
| 29 | + } | |
| 30 | + | |
| 31 | + // The WSDD service name defaults to the port name. | |
| 32 | + private String WebServiceSoapWSDDServiceName = "WebServiceSoap"; | |
| 33 | + | |
| 34 | + public String getWebServiceSoapWSDDServiceName() { | |
| 35 | + return WebServiceSoapWSDDServiceName; | |
| 36 | + } | |
| 37 | + | |
| 38 | + public void setWebServiceSoapWSDDServiceName(String name) { | |
| 39 | + WebServiceSoapWSDDServiceName = name; | |
| 40 | + } | |
| 41 | + | |
| 42 | + public WebServiceSoap getWebServiceSoap() throws javax.xml.rpc.ServiceException { | |
| 43 | + java.net.URL endpoint; | |
| 44 | + try { | |
| 45 | + endpoint = new java.net.URL(WebServiceSoap_address); | |
| 46 | + } | |
| 47 | + catch (java.net.MalformedURLException e) { | |
| 48 | + throw new javax.xml.rpc.ServiceException(e); | |
| 49 | + } | |
| 50 | + return getWebServiceSoap(endpoint); | |
| 51 | + } | |
| 52 | + | |
| 53 | + public WebServiceSoap getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException { | |
| 54 | + try { | |
| 55 | + com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoapStub _stub = new com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoapStub(portAddress, this); | |
| 56 | + _stub.setPortName(getWebServiceSoapWSDDServiceName()); | |
| 57 | + return _stub; | |
| 58 | + } | |
| 59 | + catch (org.apache.axis.AxisFault e) { | |
| 60 | + return null; | |
| 61 | + } | |
| 62 | + } | |
| 63 | + | |
| 64 | + public void setWebServiceSoapEndpointAddress(String address) { | |
| 65 | + WebServiceSoap_address = address; | |
| 66 | + } | |
| 67 | + | |
| 68 | + /** | |
| 69 | + * For the given interface, get the stub implementation. | |
| 70 | + * If this service has no port for the given interface, | |
| 71 | + * then ServiceException is thrown. | |
| 72 | + */ | |
| 73 | + public java.rmi.Remote getPort(Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { | |
| 74 | + try { | |
| 75 | + if (WebServiceSoap.class.isAssignableFrom(serviceEndpointInterface)) { | |
| 76 | + com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoapStub _stub = new com.bsth.webService.trafficManage.up.org.tempuri.WebServiceSoapStub(new java.net.URL(WebServiceSoap_address), this); | |
| 77 | + _stub.setPortName(getWebServiceSoapWSDDServiceName()); | |
| 78 | + return _stub; | |
| 79 | + } | |
| 80 | + } | |
| 81 | + catch (Throwable t) { | |
| 82 | + throw new javax.xml.rpc.ServiceException(t); | |
| 83 | + } | |
| 84 | + throw new javax.xml.rpc.ServiceException("There is no stub implementation for the interface: " + (serviceEndpointInterface == null ? "null" : serviceEndpointInterface.getName())); | |
| 85 | + } | |
| 86 | + | |
| 87 | + /** | |
| 88 | + * For the given interface, get the stub implementation. | |
| 89 | + * If this service has no port for the given interface, | |
| 90 | + * then ServiceException is thrown. | |
| 91 | + */ | |
| 92 | + public java.rmi.Remote getPort(javax.xml.namespace.QName portName, Class serviceEndpointInterface) throws javax.xml.rpc.ServiceException { | |
| 93 | + if (portName == null) { | |
| 94 | + return getPort(serviceEndpointInterface); | |
| 95 | + } | |
| 96 | + String inputPortName = portName.getLocalPart(); | |
| 97 | + if ("WebServiceSoap".equals(inputPortName)) { | |
| 98 | + return getWebServiceSoap(); | |
| 99 | + } | |
| 100 | + else { | |
| 101 | + java.rmi.Remote _stub = getPort(serviceEndpointInterface); | |
| 102 | + ((org.apache.axis.client.Stub) _stub).setPortName(portName); | |
| 103 | + return _stub; | |
| 104 | + } | |
| 105 | + } | |
| 106 | + | |
| 107 | + public javax.xml.namespace.QName getServiceName() { | |
| 108 | + return new javax.xml.namespace.QName("http://tempuri.org/", "WebService"); | |
| 109 | + } | |
| 110 | + | |
| 111 | + private java.util.HashSet ports = null; | |
| 112 | + | |
| 113 | + public java.util.Iterator getPorts() { | |
| 114 | + if (ports == null) { | |
| 115 | + ports = new java.util.HashSet(); | |
| 116 | + ports.add(new javax.xml.namespace.QName("http://tempuri.org/", "WebServiceSoap")); | |
| 117 | + } | |
| 118 | + return ports.iterator(); | |
| 119 | + } | |
| 120 | + | |
| 121 | + /** | |
| 122 | + * Set the endpoint address for the specified port name. | |
| 123 | + */ | |
| 124 | + public void setEndpointAddress(String portName, String address) throws javax.xml.rpc.ServiceException { | |
| 125 | + | |
| 126 | +if ("WebServiceSoap".equals(portName)) { | |
| 127 | + setWebServiceSoapEndpointAddress(address); | |
| 128 | + } | |
| 129 | + else | |
| 130 | +{ // Unknown Port Name | |
| 131 | + throw new javax.xml.rpc.ServiceException(" Cannot set Endpoint Address for Unknown Port" + portName); | |
| 132 | + } | |
| 133 | + } | |
| 134 | + | |
| 135 | + /** | |
| 136 | + * Set the endpoint address for the specified port name. | |
| 137 | + */ | |
| 138 | + public void setEndpointAddress(javax.xml.namespace.QName portName, String address) throws javax.xml.rpc.ServiceException { | |
| 139 | + setEndpointAddress(portName.getLocalPart(), address); | |
| 140 | + } | |
| 141 | + | |
| 142 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/WebServiceSoap.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebServiceSoap.java | |
| 3 | + * | |
| 4 | + * This file was auto-generated from WSDL | |
| 5 | + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. | |
| 6 | + */ | |
| 7 | + | |
| 8 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 9 | + | |
| 10 | +public interface WebServiceSoap extends java.rmi.Remote { | |
| 11 | + public Results setXL(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 12 | + public Results setCL(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 13 | + public Results setLD(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 14 | + public Results setDDRB(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 15 | + public Results setJHBC(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 16 | + public Results setSKB(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 17 | + public Results setSJ(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 18 | + public Results setLCYH(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 19 | + public Results setXLPC(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 20 | + public Results setCS(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 21 | + public Results setFZCKGM(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 22 | + public Results setJJZD(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 23 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/WebServiceSoapProxy.java
0 → 100644
| 1 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 2 | + | |
| 3 | +public class WebServiceSoapProxy implements WebServiceSoap { | |
| 4 | + private String _endpoint = null; | |
| 5 | + private WebServiceSoap webServiceSoap = null; | |
| 6 | + | |
| 7 | + public WebServiceSoapProxy() { | |
| 8 | + _initWebServiceSoapProxy(); | |
| 9 | + } | |
| 10 | + | |
| 11 | + public WebServiceSoapProxy(String endpoint) { | |
| 12 | + _endpoint = endpoint; | |
| 13 | + _initWebServiceSoapProxy(); | |
| 14 | + } | |
| 15 | + | |
| 16 | + private void _initWebServiceSoapProxy() { | |
| 17 | + try { | |
| 18 | + webServiceSoap = (new WebServiceLocator()).getWebServiceSoap(); | |
| 19 | + if (webServiceSoap != null) { | |
| 20 | + if (_endpoint != null) | |
| 21 | + ((javax.xml.rpc.Stub)webServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); | |
| 22 | + else | |
| 23 | + _endpoint = (String)((javax.xml.rpc.Stub)webServiceSoap)._getProperty("javax.xml.rpc.service.endpoint.address"); | |
| 24 | + } | |
| 25 | + | |
| 26 | + } | |
| 27 | + catch (javax.xml.rpc.ServiceException serviceException) {} | |
| 28 | + } | |
| 29 | + | |
| 30 | + public String getEndpoint() { | |
| 31 | + return _endpoint; | |
| 32 | + } | |
| 33 | + | |
| 34 | + public void setEndpoint(String endpoint) { | |
| 35 | + _endpoint = endpoint; | |
| 36 | + if (webServiceSoap != null) | |
| 37 | + ((javax.xml.rpc.Stub)webServiceSoap)._setProperty("javax.xml.rpc.service.endpoint.address", _endpoint); | |
| 38 | + | |
| 39 | + } | |
| 40 | + | |
| 41 | + public WebServiceSoap getWebServiceSoap() { | |
| 42 | + if (webServiceSoap == null) | |
| 43 | + _initWebServiceSoapProxy(); | |
| 44 | + return webServiceSoap; | |
| 45 | + } | |
| 46 | + | |
| 47 | + public Results setXL(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 48 | + if (webServiceSoap == null) | |
| 49 | + _initWebServiceSoapProxy(); | |
| 50 | + return webServiceSoap.setXL(uName, uPass, sXml); | |
| 51 | + } | |
| 52 | + | |
| 53 | + public Results setCL(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 54 | + if (webServiceSoap == null) | |
| 55 | + _initWebServiceSoapProxy(); | |
| 56 | + return webServiceSoap.setCL(uName, uPass, sXml); | |
| 57 | + } | |
| 58 | + | |
| 59 | + public Results setLD(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 60 | + if (webServiceSoap == null) | |
| 61 | + _initWebServiceSoapProxy(); | |
| 62 | + return webServiceSoap.setLD(uName, uPass, sXml); | |
| 63 | + } | |
| 64 | + | |
| 65 | + public Results setDDRB(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 66 | + if (webServiceSoap == null) | |
| 67 | + _initWebServiceSoapProxy(); | |
| 68 | + return webServiceSoap.setDDRB(uName, uPass, sXml); | |
| 69 | + } | |
| 70 | + | |
| 71 | + public Results setJHBC(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 72 | + if (webServiceSoap == null) | |
| 73 | + _initWebServiceSoapProxy(); | |
| 74 | + return webServiceSoap.setJHBC(uName, uPass, sXml); | |
| 75 | + } | |
| 76 | + | |
| 77 | + public Results setSKB(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 78 | + if (webServiceSoap == null) | |
| 79 | + _initWebServiceSoapProxy(); | |
| 80 | + return webServiceSoap.setSKB(uName, uPass, sXml); | |
| 81 | + } | |
| 82 | + | |
| 83 | + public Results setSJ(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 84 | + if (webServiceSoap == null) | |
| 85 | + _initWebServiceSoapProxy(); | |
| 86 | + return webServiceSoap.setSJ(uName, uPass, sXml); | |
| 87 | + } | |
| 88 | + | |
| 89 | + public Results setLCYH(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 90 | + if (webServiceSoap == null) | |
| 91 | + _initWebServiceSoapProxy(); | |
| 92 | + return webServiceSoap.setLCYH(uName, uPass, sXml); | |
| 93 | + } | |
| 94 | + | |
| 95 | + public Results setXLPC(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 96 | + if (webServiceSoap == null) | |
| 97 | + _initWebServiceSoapProxy(); | |
| 98 | + return webServiceSoap.setXLPC(uName, uPass, sXml); | |
| 99 | + } | |
| 100 | + | |
| 101 | + public Results setCS(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 102 | + if (webServiceSoap == null) | |
| 103 | + _initWebServiceSoapProxy(); | |
| 104 | + return webServiceSoap.setCS(uName, uPass, sXml); | |
| 105 | + } | |
| 106 | + | |
| 107 | + public Results setFZCKGM(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 108 | + if (webServiceSoap == null) | |
| 109 | + _initWebServiceSoapProxy(); | |
| 110 | + return webServiceSoap.setFZCKGM(uName, uPass, sXml); | |
| 111 | + } | |
| 112 | + | |
| 113 | + public Results setJJZD(String uName, String uPass, String sXml) throws java.rmi.RemoteException{ | |
| 114 | + if (webServiceSoap == null) | |
| 115 | + _initWebServiceSoapProxy(); | |
| 116 | + return webServiceSoap.setJJZD(uName, uPass, sXml); | |
| 117 | + } | |
| 118 | + | |
| 119 | + | |
| 120 | +} | |
| 0 | 121 | \ No newline at end of file | ... | ... |
src/main/java/com/bsth/webService/trafficManage/up/org/tempuri/WebServiceSoapStub.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebServiceSoapStub.java | |
| 3 | + * | |
| 4 | + * This file was auto-generated from WSDL | |
| 5 | + * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. | |
| 6 | + */ | |
| 7 | + | |
| 8 | +package com.bsth.webService.trafficManage.up.org.tempuri; | |
| 9 | + | |
| 10 | +public class WebServiceSoapStub extends org.apache.axis.client.Stub implements WebServiceSoap { | |
| 11 | + private java.util.Vector cachedSerClasses = new java.util.Vector(); | |
| 12 | + private java.util.Vector cachedSerQNames = new java.util.Vector(); | |
| 13 | + private java.util.Vector cachedSerFactories = new java.util.Vector(); | |
| 14 | + private java.util.Vector cachedDeserFactories = new java.util.Vector(); | |
| 15 | + | |
| 16 | + static org.apache.axis.description.OperationDesc [] _operations; | |
| 17 | + | |
| 18 | + static { | |
| 19 | + _operations = new org.apache.axis.description.OperationDesc[12]; | |
| 20 | + _initOperationDesc1(); | |
| 21 | + _initOperationDesc2(); | |
| 22 | + } | |
| 23 | + | |
| 24 | + private static void _initOperationDesc1(){ | |
| 25 | + org.apache.axis.description.OperationDesc oper; | |
| 26 | + org.apache.axis.description.ParameterDesc param; | |
| 27 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 28 | + oper.setName("setXL"); | |
| 29 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 30 | + param.setOmittable(true); | |
| 31 | + oper.addParameter(param); | |
| 32 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 33 | + param.setOmittable(true); | |
| 34 | + oper.addParameter(param); | |
| 35 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 36 | + param.setOmittable(true); | |
| 37 | + oper.addParameter(param); | |
| 38 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 39 | + oper.setReturnClass(Results.class); | |
| 40 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setXLResult")); | |
| 41 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 42 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 43 | + _operations[0] = oper; | |
| 44 | + | |
| 45 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 46 | + oper.setName("setCL"); | |
| 47 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 48 | + param.setOmittable(true); | |
| 49 | + oper.addParameter(param); | |
| 50 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 51 | + param.setOmittable(true); | |
| 52 | + oper.addParameter(param); | |
| 53 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 54 | + param.setOmittable(true); | |
| 55 | + oper.addParameter(param); | |
| 56 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 57 | + oper.setReturnClass(Results.class); | |
| 58 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setCLResult")); | |
| 59 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 60 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 61 | + _operations[1] = oper; | |
| 62 | + | |
| 63 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 64 | + oper.setName("setLD"); | |
| 65 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 66 | + param.setOmittable(true); | |
| 67 | + oper.addParameter(param); | |
| 68 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 69 | + param.setOmittable(true); | |
| 70 | + oper.addParameter(param); | |
| 71 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 72 | + param.setOmittable(true); | |
| 73 | + oper.addParameter(param); | |
| 74 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 75 | + oper.setReturnClass(Results.class); | |
| 76 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setLDResult")); | |
| 77 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 78 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 79 | + _operations[2] = oper; | |
| 80 | + | |
| 81 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 82 | + oper.setName("setDDRB"); | |
| 83 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 84 | + param.setOmittable(true); | |
| 85 | + oper.addParameter(param); | |
| 86 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 87 | + param.setOmittable(true); | |
| 88 | + oper.addParameter(param); | |
| 89 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 90 | + param.setOmittable(true); | |
| 91 | + oper.addParameter(param); | |
| 92 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 93 | + oper.setReturnClass(Results.class); | |
| 94 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setDDRBResult")); | |
| 95 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 96 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 97 | + _operations[3] = oper; | |
| 98 | + | |
| 99 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 100 | + oper.setName("setJHBC"); | |
| 101 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 102 | + param.setOmittable(true); | |
| 103 | + oper.addParameter(param); | |
| 104 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 105 | + param.setOmittable(true); | |
| 106 | + oper.addParameter(param); | |
| 107 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 108 | + param.setOmittable(true); | |
| 109 | + oper.addParameter(param); | |
| 110 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 111 | + oper.setReturnClass(Results.class); | |
| 112 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setJHBCResult")); | |
| 113 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 114 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 115 | + _operations[4] = oper; | |
| 116 | + | |
| 117 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 118 | + oper.setName("setSKB"); | |
| 119 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 120 | + param.setOmittable(true); | |
| 121 | + oper.addParameter(param); | |
| 122 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 123 | + param.setOmittable(true); | |
| 124 | + oper.addParameter(param); | |
| 125 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 126 | + param.setOmittable(true); | |
| 127 | + oper.addParameter(param); | |
| 128 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 129 | + oper.setReturnClass(Results.class); | |
| 130 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setSKBResult")); | |
| 131 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 132 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 133 | + _operations[5] = oper; | |
| 134 | + | |
| 135 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 136 | + oper.setName("setSJ"); | |
| 137 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 138 | + param.setOmittable(true); | |
| 139 | + oper.addParameter(param); | |
| 140 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 141 | + param.setOmittable(true); | |
| 142 | + oper.addParameter(param); | |
| 143 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 144 | + param.setOmittable(true); | |
| 145 | + oper.addParameter(param); | |
| 146 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 147 | + oper.setReturnClass(Results.class); | |
| 148 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setSJResult")); | |
| 149 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 150 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 151 | + _operations[6] = oper; | |
| 152 | + | |
| 153 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 154 | + oper.setName("setLCYH"); | |
| 155 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 156 | + param.setOmittable(true); | |
| 157 | + oper.addParameter(param); | |
| 158 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 159 | + param.setOmittable(true); | |
| 160 | + oper.addParameter(param); | |
| 161 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 162 | + param.setOmittable(true); | |
| 163 | + oper.addParameter(param); | |
| 164 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 165 | + oper.setReturnClass(Results.class); | |
| 166 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setLCYHResult")); | |
| 167 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 168 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 169 | + _operations[7] = oper; | |
| 170 | + | |
| 171 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 172 | + oper.setName("setXLPC"); | |
| 173 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 174 | + param.setOmittable(true); | |
| 175 | + oper.addParameter(param); | |
| 176 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 177 | + param.setOmittable(true); | |
| 178 | + oper.addParameter(param); | |
| 179 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 180 | + param.setOmittable(true); | |
| 181 | + oper.addParameter(param); | |
| 182 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 183 | + oper.setReturnClass(Results.class); | |
| 184 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setXLPCResult")); | |
| 185 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 186 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 187 | + _operations[8] = oper; | |
| 188 | + | |
| 189 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 190 | + oper.setName("setCS"); | |
| 191 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 192 | + param.setOmittable(true); | |
| 193 | + oper.addParameter(param); | |
| 194 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 195 | + param.setOmittable(true); | |
| 196 | + oper.addParameter(param); | |
| 197 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 198 | + param.setOmittable(true); | |
| 199 | + oper.addParameter(param); | |
| 200 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 201 | + oper.setReturnClass(Results.class); | |
| 202 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setCSResult")); | |
| 203 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 204 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 205 | + _operations[9] = oper; | |
| 206 | + | |
| 207 | + } | |
| 208 | + | |
| 209 | + private static void _initOperationDesc2(){ | |
| 210 | + org.apache.axis.description.OperationDesc oper; | |
| 211 | + org.apache.axis.description.ParameterDesc param; | |
| 212 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 213 | + oper.setName("setFZCKGM"); | |
| 214 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 215 | + param.setOmittable(true); | |
| 216 | + oper.addParameter(param); | |
| 217 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 218 | + param.setOmittable(true); | |
| 219 | + oper.addParameter(param); | |
| 220 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 221 | + param.setOmittable(true); | |
| 222 | + oper.addParameter(param); | |
| 223 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 224 | + oper.setReturnClass(Results.class); | |
| 225 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setFZCKGMResult")); | |
| 226 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 227 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 228 | + _operations[10] = oper; | |
| 229 | + | |
| 230 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 231 | + oper.setName("setJJZD"); | |
| 232 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uName"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 233 | + param.setOmittable(true); | |
| 234 | + oper.addParameter(param); | |
| 235 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "uPass"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 236 | + param.setOmittable(true); | |
| 237 | + oper.addParameter(param); | |
| 238 | + param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("http://tempuri.org/", "sXml"), org.apache.axis.description.ParameterDesc.IN, new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string"), String.class, false, false); | |
| 239 | + param.setOmittable(true); | |
| 240 | + oper.addParameter(param); | |
| 241 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 242 | + oper.setReturnClass(Results.class); | |
| 243 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setJJZDResult")); | |
| 244 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 245 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 246 | + _operations[11] = oper; | |
| 247 | + | |
| 248 | + } | |
| 249 | + | |
| 250 | + public WebServiceSoapStub() throws org.apache.axis.AxisFault { | |
| 251 | + this(null); | |
| 252 | + } | |
| 253 | + | |
| 254 | + public WebServiceSoapStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { | |
| 255 | + this(service); | |
| 256 | + super.cachedEndpoint = endpointURL; | |
| 257 | + } | |
| 258 | + | |
| 259 | + public WebServiceSoapStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { | |
| 260 | + if (service == null) { | |
| 261 | + super.service = new org.apache.axis.client.Service(); | |
| 262 | + } else { | |
| 263 | + super.service = service; | |
| 264 | + } | |
| 265 | + ((org.apache.axis.client.Service)super.service).setTypeMappingVersion("1.2"); | |
| 266 | + Class cls; | |
| 267 | + javax.xml.namespace.QName qName; | |
| 268 | + javax.xml.namespace.QName qName2; | |
| 269 | + Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class; | |
| 270 | + Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class; | |
| 271 | + Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class; | |
| 272 | + Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class; | |
| 273 | + Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class; | |
| 274 | + Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class; | |
| 275 | + Class simplesf = org.apache.axis.encoding.ser.SimpleSerializerFactory.class; | |
| 276 | + Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class; | |
| 277 | + Class simplelistsf = org.apache.axis.encoding.ser.SimpleListSerializerFactory.class; | |
| 278 | + Class simplelistdf = org.apache.axis.encoding.ser.SimpleListDeserializerFactory.class; | |
| 279 | + qName = new javax.xml.namespace.QName("http://tempuri.org/", "Results"); | |
| 280 | + cachedSerQNames.add(qName); | |
| 281 | + cls = Results.class; | |
| 282 | + cachedSerClasses.add(cls); | |
| 283 | + cachedSerFactories.add(beansf); | |
| 284 | + cachedDeserFactories.add(beandf); | |
| 285 | + | |
| 286 | + } | |
| 287 | + | |
| 288 | + protected org.apache.axis.client.Call createCall() throws java.rmi.RemoteException { | |
| 289 | + try { | |
| 290 | + org.apache.axis.client.Call _call = super._createCall(); | |
| 291 | + if (super.maintainSessionSet) { | |
| 292 | + _call.setMaintainSession(super.maintainSession); | |
| 293 | + } | |
| 294 | + if (super.cachedUsername != null) { | |
| 295 | + _call.setUsername(super.cachedUsername); | |
| 296 | + } | |
| 297 | + if (super.cachedPassword != null) { | |
| 298 | + _call.setPassword(super.cachedPassword); | |
| 299 | + } | |
| 300 | + if (super.cachedEndpoint != null) { | |
| 301 | + _call.setTargetEndpointAddress(super.cachedEndpoint); | |
| 302 | + } | |
| 303 | + if (super.cachedTimeout != null) { | |
| 304 | + _call.setTimeout(super.cachedTimeout); | |
| 305 | + } | |
| 306 | + if (super.cachedPortName != null) { | |
| 307 | + _call.setPortName(super.cachedPortName); | |
| 308 | + } | |
| 309 | + java.util.Enumeration keys = super.cachedProperties.keys(); | |
| 310 | + while (keys.hasMoreElements()) { | |
| 311 | + String key = (String) keys.nextElement(); | |
| 312 | + _call.setProperty(key, super.cachedProperties.get(key)); | |
| 313 | + } | |
| 314 | + // All the type mapping information is registered | |
| 315 | + // when the first call is made. | |
| 316 | + // The type mapping information is actually registered in | |
| 317 | + // the TypeMappingRegistry of the service, which | |
| 318 | + // is the reason why registration is only needed for the first call. | |
| 319 | + synchronized (this) { | |
| 320 | + if (firstCall()) { | |
| 321 | + // must set encoding style before registering serializers | |
| 322 | + _call.setEncodingStyle(null); | |
| 323 | + for (int i = 0; i < cachedSerFactories.size(); ++i) { | |
| 324 | + Class cls = (Class) cachedSerClasses.get(i); | |
| 325 | + javax.xml.namespace.QName qName = | |
| 326 | + (javax.xml.namespace.QName) cachedSerQNames.get(i); | |
| 327 | + Object x = cachedSerFactories.get(i); | |
| 328 | + if (x instanceof Class) { | |
| 329 | + Class sf = (Class) | |
| 330 | + cachedSerFactories.get(i); | |
| 331 | + Class df = (Class) | |
| 332 | + cachedDeserFactories.get(i); | |
| 333 | + _call.registerTypeMapping(cls, qName, sf, df, false); | |
| 334 | + } | |
| 335 | + else if (x instanceof javax.xml.rpc.encoding.SerializerFactory) { | |
| 336 | + org.apache.axis.encoding.SerializerFactory sf = (org.apache.axis.encoding.SerializerFactory) | |
| 337 | + cachedSerFactories.get(i); | |
| 338 | + org.apache.axis.encoding.DeserializerFactory df = (org.apache.axis.encoding.DeserializerFactory) | |
| 339 | + cachedDeserFactories.get(i); | |
| 340 | + _call.registerTypeMapping(cls, qName, sf, df, false); | |
| 341 | + } | |
| 342 | + } | |
| 343 | + } | |
| 344 | + } | |
| 345 | + return _call; | |
| 346 | + } | |
| 347 | + catch (Throwable _t) { | |
| 348 | + throw new org.apache.axis.AxisFault("Failure trying to get the Call object", _t); | |
| 349 | + } | |
| 350 | + } | |
| 351 | + | |
| 352 | + public Results setXL(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 353 | + if (super.cachedEndpoint == null) { | |
| 354 | + throw new org.apache.axis.NoEndPointException(); | |
| 355 | + } | |
| 356 | + org.apache.axis.client.Call _call = createCall(); | |
| 357 | + _call.setOperation(_operations[0]); | |
| 358 | + _call.setUseSOAPAction(true); | |
| 359 | + _call.setSOAPActionURI("http://tempuri.org/setXL"); | |
| 360 | + _call.setEncodingStyle(null); | |
| 361 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 362 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 363 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 364 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setXL")); | |
| 365 | + | |
| 366 | + setRequestHeaders(_call); | |
| 367 | + setAttachments(_call); | |
| 368 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 369 | + | |
| 370 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 371 | + throw (java.rmi.RemoteException)_resp; | |
| 372 | + } | |
| 373 | + else { | |
| 374 | + extractAttachments(_call); | |
| 375 | + try { | |
| 376 | + return (Results) _resp; | |
| 377 | + } catch (Exception _exception) { | |
| 378 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 379 | + } | |
| 380 | + } | |
| 381 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 382 | + throw axisFaultException; | |
| 383 | +} | |
| 384 | + } | |
| 385 | + | |
| 386 | + public Results setCL(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 387 | + if (super.cachedEndpoint == null) { | |
| 388 | + throw new org.apache.axis.NoEndPointException(); | |
| 389 | + } | |
| 390 | + org.apache.axis.client.Call _call = createCall(); | |
| 391 | + _call.setOperation(_operations[1]); | |
| 392 | + _call.setUseSOAPAction(true); | |
| 393 | + _call.setSOAPActionURI("http://tempuri.org/setCL"); | |
| 394 | + _call.setEncodingStyle(null); | |
| 395 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 396 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 397 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 398 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setCL")); | |
| 399 | + | |
| 400 | + setRequestHeaders(_call); | |
| 401 | + setAttachments(_call); | |
| 402 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 403 | + | |
| 404 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 405 | + throw (java.rmi.RemoteException)_resp; | |
| 406 | + } | |
| 407 | + else { | |
| 408 | + extractAttachments(_call); | |
| 409 | + try { | |
| 410 | + return (Results) _resp; | |
| 411 | + } catch (Exception _exception) { | |
| 412 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 413 | + } | |
| 414 | + } | |
| 415 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 416 | + throw axisFaultException; | |
| 417 | +} | |
| 418 | + } | |
| 419 | + | |
| 420 | + public Results setLD(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 421 | + if (super.cachedEndpoint == null) { | |
| 422 | + throw new org.apache.axis.NoEndPointException(); | |
| 423 | + } | |
| 424 | + org.apache.axis.client.Call _call = createCall(); | |
| 425 | + _call.setOperation(_operations[2]); | |
| 426 | + _call.setUseSOAPAction(true); | |
| 427 | + _call.setSOAPActionURI("http://tempuri.org/setLD"); | |
| 428 | + _call.setEncodingStyle(null); | |
| 429 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 430 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 431 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 432 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setLD")); | |
| 433 | + | |
| 434 | + setRequestHeaders(_call); | |
| 435 | + setAttachments(_call); | |
| 436 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 437 | + | |
| 438 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 439 | + throw (java.rmi.RemoteException)_resp; | |
| 440 | + } | |
| 441 | + else { | |
| 442 | + extractAttachments(_call); | |
| 443 | + try { | |
| 444 | + return (Results) _resp; | |
| 445 | + } catch (Exception _exception) { | |
| 446 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 447 | + } | |
| 448 | + } | |
| 449 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 450 | + throw axisFaultException; | |
| 451 | +} | |
| 452 | + } | |
| 453 | + | |
| 454 | + public Results setDDRB(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 455 | + if (super.cachedEndpoint == null) { | |
| 456 | + throw new org.apache.axis.NoEndPointException(); | |
| 457 | + } | |
| 458 | + org.apache.axis.client.Call _call = createCall(); | |
| 459 | + _call.setOperation(_operations[3]); | |
| 460 | + _call.setUseSOAPAction(true); | |
| 461 | + _call.setSOAPActionURI("http://tempuri.org/setDDRB"); | |
| 462 | + _call.setEncodingStyle(null); | |
| 463 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 464 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 465 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 466 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setDDRB")); | |
| 467 | + | |
| 468 | + setRequestHeaders(_call); | |
| 469 | + setAttachments(_call); | |
| 470 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 471 | + | |
| 472 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 473 | + throw (java.rmi.RemoteException)_resp; | |
| 474 | + } | |
| 475 | + else { | |
| 476 | + extractAttachments(_call); | |
| 477 | + try { | |
| 478 | + return (Results) _resp; | |
| 479 | + } catch (Exception _exception) { | |
| 480 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 481 | + } | |
| 482 | + } | |
| 483 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 484 | + throw axisFaultException; | |
| 485 | +} | |
| 486 | + } | |
| 487 | + | |
| 488 | + public Results setJHBC(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 489 | + if (super.cachedEndpoint == null) { | |
| 490 | + throw new org.apache.axis.NoEndPointException(); | |
| 491 | + } | |
| 492 | + org.apache.axis.client.Call _call = createCall(); | |
| 493 | + _call.setOperation(_operations[4]); | |
| 494 | + _call.setUseSOAPAction(true); | |
| 495 | + _call.setSOAPActionURI("http://tempuri.org/setJHBC"); | |
| 496 | + _call.setEncodingStyle(null); | |
| 497 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 498 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 499 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 500 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setJHBC")); | |
| 501 | + | |
| 502 | + setRequestHeaders(_call); | |
| 503 | + setAttachments(_call); | |
| 504 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 505 | + | |
| 506 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 507 | + throw (java.rmi.RemoteException)_resp; | |
| 508 | + } | |
| 509 | + else { | |
| 510 | + extractAttachments(_call); | |
| 511 | + try { | |
| 512 | + return (Results) _resp; | |
| 513 | + } catch (Exception _exception) { | |
| 514 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 515 | + } | |
| 516 | + } | |
| 517 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 518 | + throw axisFaultException; | |
| 519 | +} | |
| 520 | + } | |
| 521 | + | |
| 522 | + public Results setSKB(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 523 | + if (super.cachedEndpoint == null) { | |
| 524 | + throw new org.apache.axis.NoEndPointException(); | |
| 525 | + } | |
| 526 | + org.apache.axis.client.Call _call = createCall(); | |
| 527 | + _call.setOperation(_operations[5]); | |
| 528 | + _call.setUseSOAPAction(true); | |
| 529 | + _call.setSOAPActionURI("http://tempuri.org/setSKB"); | |
| 530 | + _call.setEncodingStyle(null); | |
| 531 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 532 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 533 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 534 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setSKB")); | |
| 535 | + | |
| 536 | + setRequestHeaders(_call); | |
| 537 | + setAttachments(_call); | |
| 538 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 539 | + | |
| 540 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 541 | + throw (java.rmi.RemoteException)_resp; | |
| 542 | + } | |
| 543 | + else { | |
| 544 | + extractAttachments(_call); | |
| 545 | + try { | |
| 546 | + return (Results) _resp; | |
| 547 | + } catch (Exception _exception) { | |
| 548 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 549 | + } | |
| 550 | + } | |
| 551 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 552 | + throw axisFaultException; | |
| 553 | +} | |
| 554 | + } | |
| 555 | + | |
| 556 | + public Results setSJ(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 557 | + if (super.cachedEndpoint == null) { | |
| 558 | + throw new org.apache.axis.NoEndPointException(); | |
| 559 | + } | |
| 560 | + org.apache.axis.client.Call _call = createCall(); | |
| 561 | + _call.setOperation(_operations[6]); | |
| 562 | + _call.setUseSOAPAction(true); | |
| 563 | + _call.setSOAPActionURI("http://tempuri.org/setSJ"); | |
| 564 | + _call.setEncodingStyle(null); | |
| 565 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 566 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 567 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 568 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setSJ")); | |
| 569 | + | |
| 570 | + setRequestHeaders(_call); | |
| 571 | + setAttachments(_call); | |
| 572 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 573 | + | |
| 574 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 575 | + throw (java.rmi.RemoteException)_resp; | |
| 576 | + } | |
| 577 | + else { | |
| 578 | + extractAttachments(_call); | |
| 579 | + try { | |
| 580 | + return (Results) _resp; | |
| 581 | + } catch (Exception _exception) { | |
| 582 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 583 | + } | |
| 584 | + } | |
| 585 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 586 | + throw axisFaultException; | |
| 587 | +} | |
| 588 | + } | |
| 589 | + | |
| 590 | + public Results setLCYH(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 591 | + if (super.cachedEndpoint == null) { | |
| 592 | + throw new org.apache.axis.NoEndPointException(); | |
| 593 | + } | |
| 594 | + org.apache.axis.client.Call _call = createCall(); | |
| 595 | + _call.setOperation(_operations[7]); | |
| 596 | + _call.setUseSOAPAction(true); | |
| 597 | + _call.setSOAPActionURI("http://tempuri.org/setLCYH"); | |
| 598 | + _call.setEncodingStyle(null); | |
| 599 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 600 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 601 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 602 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setLCYH")); | |
| 603 | + | |
| 604 | + setRequestHeaders(_call); | |
| 605 | + setAttachments(_call); | |
| 606 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 607 | + | |
| 608 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 609 | + throw (java.rmi.RemoteException)_resp; | |
| 610 | + } | |
| 611 | + else { | |
| 612 | + extractAttachments(_call); | |
| 613 | + try { | |
| 614 | + return (Results) _resp; | |
| 615 | + } catch (Exception _exception) { | |
| 616 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 617 | + } | |
| 618 | + } | |
| 619 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 620 | + throw axisFaultException; | |
| 621 | +} | |
| 622 | + } | |
| 623 | + | |
| 624 | + public Results setXLPC(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 625 | + if (super.cachedEndpoint == null) { | |
| 626 | + throw new org.apache.axis.NoEndPointException(); | |
| 627 | + } | |
| 628 | + org.apache.axis.client.Call _call = createCall(); | |
| 629 | + _call.setOperation(_operations[8]); | |
| 630 | + _call.setUseSOAPAction(true); | |
| 631 | + _call.setSOAPActionURI("http://tempuri.org/setXLPC"); | |
| 632 | + _call.setEncodingStyle(null); | |
| 633 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 634 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 635 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 636 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setXLPC")); | |
| 637 | + | |
| 638 | + setRequestHeaders(_call); | |
| 639 | + setAttachments(_call); | |
| 640 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 641 | + | |
| 642 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 643 | + throw (java.rmi.RemoteException)_resp; | |
| 644 | + } | |
| 645 | + else { | |
| 646 | + extractAttachments(_call); | |
| 647 | + try { | |
| 648 | + return (Results) _resp; | |
| 649 | + } catch (Exception _exception) { | |
| 650 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 651 | + } | |
| 652 | + } | |
| 653 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 654 | + throw axisFaultException; | |
| 655 | +} | |
| 656 | + } | |
| 657 | + | |
| 658 | + public Results setCS(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 659 | + if (super.cachedEndpoint == null) { | |
| 660 | + throw new org.apache.axis.NoEndPointException(); | |
| 661 | + } | |
| 662 | + org.apache.axis.client.Call _call = createCall(); | |
| 663 | + _call.setOperation(_operations[9]); | |
| 664 | + _call.setUseSOAPAction(true); | |
| 665 | + _call.setSOAPActionURI("http://tempuri.org/setCS"); | |
| 666 | + _call.setEncodingStyle(null); | |
| 667 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 668 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 669 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 670 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setCS")); | |
| 671 | + | |
| 672 | + setRequestHeaders(_call); | |
| 673 | + setAttachments(_call); | |
| 674 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 675 | + | |
| 676 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 677 | + throw (java.rmi.RemoteException)_resp; | |
| 678 | + } | |
| 679 | + else { | |
| 680 | + extractAttachments(_call); | |
| 681 | + try { | |
| 682 | + return (Results) _resp; | |
| 683 | + } catch (Exception _exception) { | |
| 684 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 685 | + } | |
| 686 | + } | |
| 687 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 688 | + throw axisFaultException; | |
| 689 | +} | |
| 690 | + } | |
| 691 | + | |
| 692 | + public Results setFZCKGM(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 693 | + if (super.cachedEndpoint == null) { | |
| 694 | + throw new org.apache.axis.NoEndPointException(); | |
| 695 | + } | |
| 696 | + org.apache.axis.client.Call _call = createCall(); | |
| 697 | + _call.setOperation(_operations[10]); | |
| 698 | + _call.setUseSOAPAction(true); | |
| 699 | + _call.setSOAPActionURI("http://tempuri.org/setFZCKGM"); | |
| 700 | + _call.setEncodingStyle(null); | |
| 701 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 702 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 703 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 704 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setFZCKGM")); | |
| 705 | + | |
| 706 | + setRequestHeaders(_call); | |
| 707 | + setAttachments(_call); | |
| 708 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 709 | + | |
| 710 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 711 | + throw (java.rmi.RemoteException)_resp; | |
| 712 | + } | |
| 713 | + else { | |
| 714 | + extractAttachments(_call); | |
| 715 | + try { | |
| 716 | + return (Results) _resp; | |
| 717 | + } catch (Exception _exception) { | |
| 718 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 719 | + } | |
| 720 | + } | |
| 721 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 722 | + throw axisFaultException; | |
| 723 | +} | |
| 724 | + } | |
| 725 | + | |
| 726 | + public Results setJJZD(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 727 | + if (super.cachedEndpoint == null) { | |
| 728 | + throw new org.apache.axis.NoEndPointException(); | |
| 729 | + } | |
| 730 | + org.apache.axis.client.Call _call = createCall(); | |
| 731 | + _call.setOperation(_operations[11]); | |
| 732 | + _call.setUseSOAPAction(true); | |
| 733 | + _call.setSOAPActionURI("http://tempuri.org/setJJZD"); | |
| 734 | + _call.setEncodingStyle(null); | |
| 735 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 736 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 737 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 738 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setJJZD")); | |
| 739 | + | |
| 740 | + setRequestHeaders(_call); | |
| 741 | + setAttachments(_call); | |
| 742 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 743 | + | |
| 744 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 745 | + throw (java.rmi.RemoteException)_resp; | |
| 746 | + } | |
| 747 | + else { | |
| 748 | + extractAttachments(_call); | |
| 749 | + try { | |
| 750 | + return (Results) _resp; | |
| 751 | + } catch (Exception _exception) { | |
| 752 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 753 | + } | |
| 754 | + } | |
| 755 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 756 | + throw axisFaultException; | |
| 757 | +} | |
| 758 | + } | |
| 759 | + | |
| 760 | +} | ... | ... |