Commit 13aaeeaa0ea80aa541a6db22a26c1602df76e7fd
1 parent
6ae19d85
增加功能:上传路单及时刻表到青浦运管处
Showing
6 changed files
with
1727 additions
and
0 deletions
src/main/java/com/bsth/webService/trafficManage/qp/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.qp; | |
| 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/qp/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.qp; | |
| 9 | + | |
| 10 | +public interface WebService extends javax.xml.rpc.Service { | |
| 11 | + public String getWebServiceSoapAddress(); | |
| 12 | + | |
| 13 | + public com.bsth.webService.trafficManage.qp.WebServiceSoap_PortType getWebServiceSoap() throws javax.xml.rpc.ServiceException; | |
| 14 | + | |
| 15 | + public com.bsth.webService.trafficManage.qp.WebServiceSoap_PortType getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException; | |
| 16 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/qp/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.qp; | |
| 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://www.tanway.cn:7280/yyws/services/WebServiceSoap"; | |
| 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 com.bsth.webService.trafficManage.qp.WebServiceSoap_PortType 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 com.bsth.webService.trafficManage.qp.WebServiceSoap_PortType getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException { | |
| 54 | + try { | |
| 55 | + com.bsth.webService.trafficManage.qp.WebServiceSoapSoapBindingStub _stub = new com.bsth.webService.trafficManage.qp.WebServiceSoapSoapBindingStub(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 (com.bsth.webService.trafficManage.qp.WebServiceSoap_PortType.class.isAssignableFrom(serviceEndpointInterface)) { | |
| 76 | + com.bsth.webService.trafficManage.qp.WebServiceSoapSoapBindingStub _stub = new com.bsth.webService.trafficManage.qp.WebServiceSoapSoapBindingStub(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/qp/WebServiceSoap.wsdl
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<wsdl:definitions targetNamespace="http://tempuri.org/" xmlns:impl="http://tempuri.org/" | |
| 3 | + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" | |
| 4 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | |
| 5 | +<!--WSDL created by Apache Axis version: 1.4 | |
| 6 | +Built on Apr 22, 2006 (06:55:48 PDT)--> | |
| 7 | + <wsdl:types> | |
| 8 | + <schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/" xmlns="http://www.w3.org/2001/XMLSchema"> | |
| 9 | + <element name="setCL"> | |
| 10 | + <complexType> | |
| 11 | + <sequence> | |
| 12 | + <element name="uName" type="xsd:string"/> | |
| 13 | + <element name="uPass" type="xsd:string"/> | |
| 14 | + <element name="sXml" type="xsd:string"/> | |
| 15 | + </sequence> | |
| 16 | + </complexType> | |
| 17 | + </element> | |
| 18 | + <element name="setCLResponse"> | |
| 19 | + <complexType> | |
| 20 | + <sequence> | |
| 21 | + <element name="setCLResult" type="impl:Results"/> | |
| 22 | + </sequence> | |
| 23 | + </complexType> | |
| 24 | + </element> | |
| 25 | + <complexType name="Results"> | |
| 26 | + <sequence> | |
| 27 | + <element name="success" type="xsd:boolean"/> | |
| 28 | + <element maxOccurs="1" minOccurs="0" name="message" type="xsd:string"/> | |
| 29 | + </sequence> | |
| 30 | + </complexType> | |
| 31 | + <element name="setLD"> | |
| 32 | + <complexType> | |
| 33 | + <sequence> | |
| 34 | + <element name="uName" type="xsd:string"/> | |
| 35 | + <element name="uPass" type="xsd:string"/> | |
| 36 | + <element name="sXml" type="xsd:string"/> | |
| 37 | + </sequence> | |
| 38 | + </complexType> | |
| 39 | + </element> | |
| 40 | + <element name="setLDResponse"> | |
| 41 | + <complexType> | |
| 42 | + <sequence> | |
| 43 | + <element name="setLDResult" type="impl:Results"/> | |
| 44 | + </sequence> | |
| 45 | + </complexType> | |
| 46 | + </element> | |
| 47 | + <element name="setDDRB"> | |
| 48 | + <complexType> | |
| 49 | + <sequence> | |
| 50 | + <element name="uName" type="xsd:string"/> | |
| 51 | + <element name="uPass" type="xsd:string"/> | |
| 52 | + <element name="sXml" type="xsd:string"/> | |
| 53 | + </sequence> | |
| 54 | + </complexType> | |
| 55 | + </element> | |
| 56 | + <element name="setDDRBResponse"> | |
| 57 | + <complexType> | |
| 58 | + <sequence> | |
| 59 | + <element name="setDDRBResult" type="impl:Results"/> | |
| 60 | + </sequence> | |
| 61 | + </complexType> | |
| 62 | + </element> | |
| 63 | + <element name="setJHBC"> | |
| 64 | + <complexType> | |
| 65 | + <sequence> | |
| 66 | + <element name="uName" type="xsd:string"/> | |
| 67 | + <element name="uPass" type="xsd:string"/> | |
| 68 | + <element name="sXml" type="xsd:string"/> | |
| 69 | + </sequence> | |
| 70 | + </complexType> | |
| 71 | + </element> | |
| 72 | + <element name="setJHBCResponse"> | |
| 73 | + <complexType> | |
| 74 | + <sequence> | |
| 75 | + <element name="setJHBCResult" type="impl:Results"/> | |
| 76 | + </sequence> | |
| 77 | + </complexType> | |
| 78 | + </element> | |
| 79 | + <element name="setSKB"> | |
| 80 | + <complexType> | |
| 81 | + <sequence> | |
| 82 | + <element name="uName" type="xsd:string"/> | |
| 83 | + <element name="uPass" type="xsd:string"/> | |
| 84 | + <element name="sXml" type="xsd:string"/> | |
| 85 | + </sequence> | |
| 86 | + </complexType> | |
| 87 | + </element> | |
| 88 | + <element name="setSKBResponse"> | |
| 89 | + <complexType> | |
| 90 | + <sequence> | |
| 91 | + <element name="setSKBResult" type="impl:Results"/> | |
| 92 | + </sequence> | |
| 93 | + </complexType> | |
| 94 | + </element> | |
| 95 | + <element name="setSJ"> | |
| 96 | + <complexType> | |
| 97 | + <sequence> | |
| 98 | + <element name="uName" type="xsd:string"/> | |
| 99 | + <element name="uPass" type="xsd:string"/> | |
| 100 | + <element name="sXml" type="xsd:string"/> | |
| 101 | + </sequence> | |
| 102 | + </complexType> | |
| 103 | + </element> | |
| 104 | + <element name="setSJResponse"> | |
| 105 | + <complexType> | |
| 106 | + <sequence> | |
| 107 | + <element name="setSJResult" type="impl:Results"/> | |
| 108 | + </sequence> | |
| 109 | + </complexType> | |
| 110 | + </element> | |
| 111 | + <element name="setLCYH"> | |
| 112 | + <complexType> | |
| 113 | + <sequence> | |
| 114 | + <element name="uName" type="xsd:string"/> | |
| 115 | + <element name="uPass" type="xsd:string"/> | |
| 116 | + <element name="sXml" type="xsd:string"/> | |
| 117 | + </sequence> | |
| 118 | + </complexType> | |
| 119 | + </element> | |
| 120 | + <element name="setLCYHResponse"> | |
| 121 | + <complexType> | |
| 122 | + <sequence> | |
| 123 | + <element name="setLCYHResult" type="impl:Results"/> | |
| 124 | + </sequence> | |
| 125 | + </complexType> | |
| 126 | + </element> | |
| 127 | + <element name="setXLPC"> | |
| 128 | + <complexType> | |
| 129 | + <sequence> | |
| 130 | + <element name="uName" type="xsd:string"/> | |
| 131 | + <element name="uPass" type="xsd:string"/> | |
| 132 | + <element name="sXml" type="xsd:string"/> | |
| 133 | + </sequence> | |
| 134 | + </complexType> | |
| 135 | + </element> | |
| 136 | + <element name="setXLPCResponse"> | |
| 137 | + <complexType> | |
| 138 | + <sequence> | |
| 139 | + <element name="setXLPCResult" type="impl:Results"/> | |
| 140 | + </sequence> | |
| 141 | + </complexType> | |
| 142 | + </element> | |
| 143 | + <element name="setCS"> | |
| 144 | + <complexType> | |
| 145 | + <sequence> | |
| 146 | + <element name="uName" type="xsd:string"/> | |
| 147 | + <element name="uPass" type="xsd:string"/> | |
| 148 | + <element name="sXml" type="xsd:string"/> | |
| 149 | + </sequence> | |
| 150 | + </complexType> | |
| 151 | + </element> | |
| 152 | + <element name="setCSResponse"> | |
| 153 | + <complexType> | |
| 154 | + <sequence> | |
| 155 | + <element name="setCSResult" type="impl:Results"/> | |
| 156 | + </sequence> | |
| 157 | + </complexType> | |
| 158 | + </element> | |
| 159 | + <element name="setFZCKGM"> | |
| 160 | + <complexType> | |
| 161 | + <sequence> | |
| 162 | + <element name="uName" type="xsd:string"/> | |
| 163 | + <element name="uPass" type="xsd:string"/> | |
| 164 | + <element name="sXml" type="xsd:string"/> | |
| 165 | + </sequence> | |
| 166 | + </complexType> | |
| 167 | + </element> | |
| 168 | + <element name="setFZCKGMResponse"> | |
| 169 | + <complexType> | |
| 170 | + <sequence> | |
| 171 | + <element name="setFZCKGMResult" type="impl:Results"/> | |
| 172 | + </sequence> | |
| 173 | + </complexType> | |
| 174 | + </element> | |
| 175 | + <element name="setJJZD"> | |
| 176 | + <complexType> | |
| 177 | + <sequence> | |
| 178 | + <element name="uName" type="xsd:string"/> | |
| 179 | + <element name="uPass" type="xsd:string"/> | |
| 180 | + <element name="sXml" type="xsd:string"/> | |
| 181 | + </sequence> | |
| 182 | + </complexType> | |
| 183 | + </element> | |
| 184 | + <element name="setJJZDResponse"> | |
| 185 | + <complexType> | |
| 186 | + <sequence> | |
| 187 | + <element name="setJJZDResult" type="impl:Results"/> | |
| 188 | + </sequence> | |
| 189 | + </complexType> | |
| 190 | + </element> | |
| 191 | + </schema> | |
| 192 | + </wsdl:types> | |
| 193 | + | |
| 194 | + <wsdl:message name="setSKBRequest"> | |
| 195 | + | |
| 196 | + <wsdl:part element="impl:setSKB" name="parameters"> | |
| 197 | + | |
| 198 | + </wsdl:part> | |
| 199 | + | |
| 200 | + </wsdl:message> | |
| 201 | + | |
| 202 | + <wsdl:message name="setXLPCResponse"> | |
| 203 | + | |
| 204 | + <wsdl:part element="impl:setXLPCResponse" name="parameters"> | |
| 205 | + | |
| 206 | + </wsdl:part> | |
| 207 | + | |
| 208 | + </wsdl:message> | |
| 209 | + | |
| 210 | + <wsdl:message name="setLCYHResponse"> | |
| 211 | + | |
| 212 | + <wsdl:part element="impl:setLCYHResponse" name="parameters"> | |
| 213 | + | |
| 214 | + </wsdl:part> | |
| 215 | + | |
| 216 | + </wsdl:message> | |
| 217 | + | |
| 218 | + <wsdl:message name="setLCYHRequest"> | |
| 219 | + | |
| 220 | + <wsdl:part element="impl:setLCYH" name="parameters"> | |
| 221 | + | |
| 222 | + </wsdl:part> | |
| 223 | + | |
| 224 | + </wsdl:message> | |
| 225 | + | |
| 226 | + <wsdl:message name="setJHBCResponse"> | |
| 227 | + | |
| 228 | + <wsdl:part element="impl:setJHBCResponse" name="parameters"> | |
| 229 | + | |
| 230 | + </wsdl:part> | |
| 231 | + | |
| 232 | + </wsdl:message> | |
| 233 | + | |
| 234 | + <wsdl:message name="setCLResponse"> | |
| 235 | + | |
| 236 | + <wsdl:part element="impl:setCLResponse" name="parameters"> | |
| 237 | + | |
| 238 | + </wsdl:part> | |
| 239 | + | |
| 240 | + </wsdl:message> | |
| 241 | + | |
| 242 | + <wsdl:message name="setSJResponse"> | |
| 243 | + | |
| 244 | + <wsdl:part element="impl:setSJResponse" name="parameters"> | |
| 245 | + | |
| 246 | + </wsdl:part> | |
| 247 | + | |
| 248 | + </wsdl:message> | |
| 249 | + | |
| 250 | + <wsdl:message name="setCLRequest"> | |
| 251 | + | |
| 252 | + <wsdl:part element="impl:setCL" name="parameters"> | |
| 253 | + | |
| 254 | + </wsdl:part> | |
| 255 | + | |
| 256 | + </wsdl:message> | |
| 257 | + | |
| 258 | + <wsdl:message name="setFZCKGMResponse"> | |
| 259 | + | |
| 260 | + <wsdl:part element="impl:setFZCKGMResponse" name="parameters"> | |
| 261 | + | |
| 262 | + </wsdl:part> | |
| 263 | + | |
| 264 | + </wsdl:message> | |
| 265 | + | |
| 266 | + <wsdl:message name="setSKBResponse"> | |
| 267 | + | |
| 268 | + <wsdl:part element="impl:setSKBResponse" name="parameters"> | |
| 269 | + | |
| 270 | + </wsdl:part> | |
| 271 | + | |
| 272 | + </wsdl:message> | |
| 273 | + | |
| 274 | + <wsdl:message name="setDDRBResponse"> | |
| 275 | + | |
| 276 | + <wsdl:part element="impl:setDDRBResponse" name="parameters"> | |
| 277 | + | |
| 278 | + </wsdl:part> | |
| 279 | + | |
| 280 | + </wsdl:message> | |
| 281 | + | |
| 282 | + <wsdl:message name="setDDRBRequest"> | |
| 283 | + | |
| 284 | + <wsdl:part element="impl:setDDRB" name="parameters"> | |
| 285 | + | |
| 286 | + </wsdl:part> | |
| 287 | + | |
| 288 | + </wsdl:message> | |
| 289 | + | |
| 290 | + <wsdl:message name="setLDResponse"> | |
| 291 | + | |
| 292 | + <wsdl:part element="impl:setLDResponse" name="parameters"> | |
| 293 | + | |
| 294 | + </wsdl:part> | |
| 295 | + | |
| 296 | + </wsdl:message> | |
| 297 | + | |
| 298 | + <wsdl:message name="setJHBCRequest"> | |
| 299 | + | |
| 300 | + <wsdl:part element="impl:setJHBC" name="parameters"> | |
| 301 | + | |
| 302 | + </wsdl:part> | |
| 303 | + | |
| 304 | + </wsdl:message> | |
| 305 | + | |
| 306 | + <wsdl:message name="setSJRequest"> | |
| 307 | + | |
| 308 | + <wsdl:part element="impl:setSJ" name="parameters"> | |
| 309 | + | |
| 310 | + </wsdl:part> | |
| 311 | + | |
| 312 | + </wsdl:message> | |
| 313 | + | |
| 314 | + <wsdl:message name="setXLPCRequest"> | |
| 315 | + | |
| 316 | + <wsdl:part element="impl:setXLPC" name="parameters"> | |
| 317 | + | |
| 318 | + </wsdl:part> | |
| 319 | + | |
| 320 | + </wsdl:message> | |
| 321 | + | |
| 322 | + <wsdl:message name="setJJZDRequest"> | |
| 323 | + | |
| 324 | + <wsdl:part element="impl:setJJZD" name="parameters"> | |
| 325 | + | |
| 326 | + </wsdl:part> | |
| 327 | + | |
| 328 | + </wsdl:message> | |
| 329 | + | |
| 330 | + <wsdl:message name="setCSResponse"> | |
| 331 | + | |
| 332 | + <wsdl:part element="impl:setCSResponse" name="parameters"> | |
| 333 | + | |
| 334 | + </wsdl:part> | |
| 335 | + | |
| 336 | + </wsdl:message> | |
| 337 | + | |
| 338 | + <wsdl:message name="setLDRequest"> | |
| 339 | + | |
| 340 | + <wsdl:part element="impl:setLD" name="parameters"> | |
| 341 | + | |
| 342 | + </wsdl:part> | |
| 343 | + | |
| 344 | + </wsdl:message> | |
| 345 | + | |
| 346 | + <wsdl:message name="setFZCKGMRequest"> | |
| 347 | + | |
| 348 | + <wsdl:part element="impl:setFZCKGM" name="parameters"> | |
| 349 | + | |
| 350 | + </wsdl:part> | |
| 351 | + | |
| 352 | + </wsdl:message> | |
| 353 | + | |
| 354 | + <wsdl:message name="setJJZDResponse"> | |
| 355 | + | |
| 356 | + <wsdl:part element="impl:setJJZDResponse" name="parameters"> | |
| 357 | + | |
| 358 | + </wsdl:part> | |
| 359 | + | |
| 360 | + </wsdl:message> | |
| 361 | + | |
| 362 | + <wsdl:message name="setCSRequest"> | |
| 363 | + | |
| 364 | + <wsdl:part element="impl:setCS" name="parameters"> | |
| 365 | + | |
| 366 | + </wsdl:part> | |
| 367 | + | |
| 368 | + </wsdl:message> | |
| 369 | + | |
| 370 | + <wsdl:portType name="WebServiceSoap"> | |
| 371 | + | |
| 372 | + <wsdl:operation name="setCL"> | |
| 373 | + | |
| 374 | + <wsdl:input message="impl:setCLRequest" name="setCLRequest"> | |
| 375 | + | |
| 376 | + </wsdl:input> | |
| 377 | + | |
| 378 | + <wsdl:output message="impl:setCLResponse" name="setCLResponse"> | |
| 379 | + | |
| 380 | + </wsdl:output> | |
| 381 | + | |
| 382 | + </wsdl:operation> | |
| 383 | + | |
| 384 | + <wsdl:operation name="setLD"> | |
| 385 | + | |
| 386 | + <wsdl:input message="impl:setLDRequest" name="setLDRequest"> | |
| 387 | + | |
| 388 | + </wsdl:input> | |
| 389 | + | |
| 390 | + <wsdl:output message="impl:setLDResponse" name="setLDResponse"> | |
| 391 | + | |
| 392 | + </wsdl:output> | |
| 393 | + | |
| 394 | + </wsdl:operation> | |
| 395 | + | |
| 396 | + <wsdl:operation name="setDDRB"> | |
| 397 | + | |
| 398 | + <wsdl:input message="impl:setDDRBRequest" name="setDDRBRequest"> | |
| 399 | + | |
| 400 | + </wsdl:input> | |
| 401 | + | |
| 402 | + <wsdl:output message="impl:setDDRBResponse" name="setDDRBResponse"> | |
| 403 | + | |
| 404 | + </wsdl:output> | |
| 405 | + | |
| 406 | + </wsdl:operation> | |
| 407 | + | |
| 408 | + <wsdl:operation name="setJHBC"> | |
| 409 | + | |
| 410 | + <wsdl:input message="impl:setJHBCRequest" name="setJHBCRequest"> | |
| 411 | + | |
| 412 | + </wsdl:input> | |
| 413 | + | |
| 414 | + <wsdl:output message="impl:setJHBCResponse" name="setJHBCResponse"> | |
| 415 | + | |
| 416 | + </wsdl:output> | |
| 417 | + | |
| 418 | + </wsdl:operation> | |
| 419 | + | |
| 420 | + <wsdl:operation name="setSKB"> | |
| 421 | + | |
| 422 | + <wsdl:input message="impl:setSKBRequest" name="setSKBRequest"> | |
| 423 | + | |
| 424 | + </wsdl:input> | |
| 425 | + | |
| 426 | + <wsdl:output message="impl:setSKBResponse" name="setSKBResponse"> | |
| 427 | + | |
| 428 | + </wsdl:output> | |
| 429 | + | |
| 430 | + </wsdl:operation> | |
| 431 | + | |
| 432 | + <wsdl:operation name="setSJ"> | |
| 433 | + | |
| 434 | + <wsdl:input message="impl:setSJRequest" name="setSJRequest"> | |
| 435 | + | |
| 436 | + </wsdl:input> | |
| 437 | + | |
| 438 | + <wsdl:output message="impl:setSJResponse" name="setSJResponse"> | |
| 439 | + | |
| 440 | + </wsdl:output> | |
| 441 | + | |
| 442 | + </wsdl:operation> | |
| 443 | + | |
| 444 | + <wsdl:operation name="setLCYH"> | |
| 445 | + | |
| 446 | + <wsdl:input message="impl:setLCYHRequest" name="setLCYHRequest"> | |
| 447 | + | |
| 448 | + </wsdl:input> | |
| 449 | + | |
| 450 | + <wsdl:output message="impl:setLCYHResponse" name="setLCYHResponse"> | |
| 451 | + | |
| 452 | + </wsdl:output> | |
| 453 | + | |
| 454 | + </wsdl:operation> | |
| 455 | + | |
| 456 | + <wsdl:operation name="setXLPC"> | |
| 457 | + | |
| 458 | + <wsdl:input message="impl:setXLPCRequest" name="setXLPCRequest"> | |
| 459 | + | |
| 460 | + </wsdl:input> | |
| 461 | + | |
| 462 | + <wsdl:output message="impl:setXLPCResponse" name="setXLPCResponse"> | |
| 463 | + | |
| 464 | + </wsdl:output> | |
| 465 | + | |
| 466 | + </wsdl:operation> | |
| 467 | + | |
| 468 | + <wsdl:operation name="setCS"> | |
| 469 | + | |
| 470 | + <wsdl:input message="impl:setCSRequest" name="setCSRequest"> | |
| 471 | + | |
| 472 | + </wsdl:input> | |
| 473 | + | |
| 474 | + <wsdl:output message="impl:setCSResponse" name="setCSResponse"> | |
| 475 | + | |
| 476 | + </wsdl:output> | |
| 477 | + | |
| 478 | + </wsdl:operation> | |
| 479 | + | |
| 480 | + <wsdl:operation name="setFZCKGM"> | |
| 481 | + | |
| 482 | + <wsdl:input message="impl:setFZCKGMRequest" name="setFZCKGMRequest"> | |
| 483 | + | |
| 484 | + </wsdl:input> | |
| 485 | + | |
| 486 | + <wsdl:output message="impl:setFZCKGMResponse" name="setFZCKGMResponse"> | |
| 487 | + | |
| 488 | + </wsdl:output> | |
| 489 | + | |
| 490 | + </wsdl:operation> | |
| 491 | + | |
| 492 | + <wsdl:operation name="setJJZD"> | |
| 493 | + | |
| 494 | + <wsdl:input message="impl:setJJZDRequest" name="setJJZDRequest"> | |
| 495 | + | |
| 496 | + </wsdl:input> | |
| 497 | + | |
| 498 | + <wsdl:output message="impl:setJJZDResponse" name="setJJZDResponse"> | |
| 499 | + | |
| 500 | + </wsdl:output> | |
| 501 | + | |
| 502 | + </wsdl:operation> | |
| 503 | + | |
| 504 | + </wsdl:portType> | |
| 505 | + | |
| 506 | + <wsdl:binding name="WebServiceSoapSoapBinding" type="impl:WebServiceSoap"> | |
| 507 | + | |
| 508 | + <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> | |
| 509 | + | |
| 510 | + <wsdl:operation name="setCL"> | |
| 511 | + | |
| 512 | + <wsdlsoap:operation soapAction="http://tempuri.org/setCL"/> | |
| 513 | + | |
| 514 | + <wsdl:input name="setCLRequest"> | |
| 515 | + | |
| 516 | + <wsdlsoap:body use="literal"/> | |
| 517 | + | |
| 518 | + </wsdl:input> | |
| 519 | + | |
| 520 | + <wsdl:output name="setCLResponse"> | |
| 521 | + | |
| 522 | + <wsdlsoap:body use="literal"/> | |
| 523 | + | |
| 524 | + </wsdl:output> | |
| 525 | + | |
| 526 | + </wsdl:operation> | |
| 527 | + | |
| 528 | + <wsdl:operation name="setLD"> | |
| 529 | + | |
| 530 | + <wsdlsoap:operation soapAction="http://tempuri.org/setLD"/> | |
| 531 | + | |
| 532 | + <wsdl:input name="setLDRequest"> | |
| 533 | + | |
| 534 | + <wsdlsoap:body use="literal"/> | |
| 535 | + | |
| 536 | + </wsdl:input> | |
| 537 | + | |
| 538 | + <wsdl:output name="setLDResponse"> | |
| 539 | + | |
| 540 | + <wsdlsoap:body use="literal"/> | |
| 541 | + | |
| 542 | + </wsdl:output> | |
| 543 | + | |
| 544 | + </wsdl:operation> | |
| 545 | + | |
| 546 | + <wsdl:operation name="setDDRB"> | |
| 547 | + | |
| 548 | + <wsdlsoap:operation soapAction="http://tempuri.org/setDDRB"/> | |
| 549 | + | |
| 550 | + <wsdl:input name="setDDRBRequest"> | |
| 551 | + | |
| 552 | + <wsdlsoap:body use="literal"/> | |
| 553 | + | |
| 554 | + </wsdl:input> | |
| 555 | + | |
| 556 | + <wsdl:output name="setDDRBResponse"> | |
| 557 | + | |
| 558 | + <wsdlsoap:body use="literal"/> | |
| 559 | + | |
| 560 | + </wsdl:output> | |
| 561 | + | |
| 562 | + </wsdl:operation> | |
| 563 | + | |
| 564 | + <wsdl:operation name="setJHBC"> | |
| 565 | + | |
| 566 | + <wsdlsoap:operation soapAction="http://tempuri.org/setJHBC"/> | |
| 567 | + | |
| 568 | + <wsdl:input name="setJHBCRequest"> | |
| 569 | + | |
| 570 | + <wsdlsoap:body use="literal"/> | |
| 571 | + | |
| 572 | + </wsdl:input> | |
| 573 | + | |
| 574 | + <wsdl:output name="setJHBCResponse"> | |
| 575 | + | |
| 576 | + <wsdlsoap:body use="literal"/> | |
| 577 | + | |
| 578 | + </wsdl:output> | |
| 579 | + | |
| 580 | + </wsdl:operation> | |
| 581 | + | |
| 582 | + <wsdl:operation name="setSKB"> | |
| 583 | + | |
| 584 | + <wsdlsoap:operation soapAction="http://tempuri.org/setSKB"/> | |
| 585 | + | |
| 586 | + <wsdl:input name="setSKBRequest"> | |
| 587 | + | |
| 588 | + <wsdlsoap:body use="literal"/> | |
| 589 | + | |
| 590 | + </wsdl:input> | |
| 591 | + | |
| 592 | + <wsdl:output name="setSKBResponse"> | |
| 593 | + | |
| 594 | + <wsdlsoap:body use="literal"/> | |
| 595 | + | |
| 596 | + </wsdl:output> | |
| 597 | + | |
| 598 | + </wsdl:operation> | |
| 599 | + | |
| 600 | + <wsdl:operation name="setSJ"> | |
| 601 | + | |
| 602 | + <wsdlsoap:operation soapAction="http://tempuri.org/setSJ"/> | |
| 603 | + | |
| 604 | + <wsdl:input name="setSJRequest"> | |
| 605 | + | |
| 606 | + <wsdlsoap:body use="literal"/> | |
| 607 | + | |
| 608 | + </wsdl:input> | |
| 609 | + | |
| 610 | + <wsdl:output name="setSJResponse"> | |
| 611 | + | |
| 612 | + <wsdlsoap:body use="literal"/> | |
| 613 | + | |
| 614 | + </wsdl:output> | |
| 615 | + | |
| 616 | + </wsdl:operation> | |
| 617 | + | |
| 618 | + <wsdl:operation name="setLCYH"> | |
| 619 | + | |
| 620 | + <wsdlsoap:operation soapAction="http://tempuri.org/setLCYH"/> | |
| 621 | + | |
| 622 | + <wsdl:input name="setLCYHRequest"> | |
| 623 | + | |
| 624 | + <wsdlsoap:body use="literal"/> | |
| 625 | + | |
| 626 | + </wsdl:input> | |
| 627 | + | |
| 628 | + <wsdl:output name="setLCYHResponse"> | |
| 629 | + | |
| 630 | + <wsdlsoap:body use="literal"/> | |
| 631 | + | |
| 632 | + </wsdl:output> | |
| 633 | + | |
| 634 | + </wsdl:operation> | |
| 635 | + | |
| 636 | + <wsdl:operation name="setXLPC"> | |
| 637 | + | |
| 638 | + <wsdlsoap:operation soapAction="http://tempuri.org/setXLPC"/> | |
| 639 | + | |
| 640 | + <wsdl:input name="setXLPCRequest"> | |
| 641 | + | |
| 642 | + <wsdlsoap:body use="literal"/> | |
| 643 | + | |
| 644 | + </wsdl:input> | |
| 645 | + | |
| 646 | + <wsdl:output name="setXLPCResponse"> | |
| 647 | + | |
| 648 | + <wsdlsoap:body use="literal"/> | |
| 649 | + | |
| 650 | + </wsdl:output> | |
| 651 | + | |
| 652 | + </wsdl:operation> | |
| 653 | + | |
| 654 | + <wsdl:operation name="setCS"> | |
| 655 | + | |
| 656 | + <wsdlsoap:operation soapAction="http://tempuri.org/setCS"/> | |
| 657 | + | |
| 658 | + <wsdl:input name="setCSRequest"> | |
| 659 | + | |
| 660 | + <wsdlsoap:body use="literal"/> | |
| 661 | + | |
| 662 | + </wsdl:input> | |
| 663 | + | |
| 664 | + <wsdl:output name="setCSResponse"> | |
| 665 | + | |
| 666 | + <wsdlsoap:body use="literal"/> | |
| 667 | + | |
| 668 | + </wsdl:output> | |
| 669 | + | |
| 670 | + </wsdl:operation> | |
| 671 | + | |
| 672 | + <wsdl:operation name="setFZCKGM"> | |
| 673 | + | |
| 674 | + <wsdlsoap:operation soapAction="http://tempuri.org/setFZCKGM"/> | |
| 675 | + | |
| 676 | + <wsdl:input name="setFZCKGMRequest"> | |
| 677 | + | |
| 678 | + <wsdlsoap:body use="literal"/> | |
| 679 | + | |
| 680 | + </wsdl:input> | |
| 681 | + | |
| 682 | + <wsdl:output name="setFZCKGMResponse"> | |
| 683 | + | |
| 684 | + <wsdlsoap:body use="literal"/> | |
| 685 | + | |
| 686 | + </wsdl:output> | |
| 687 | + | |
| 688 | + </wsdl:operation> | |
| 689 | + | |
| 690 | + <wsdl:operation name="setJJZD"> | |
| 691 | + | |
| 692 | + <wsdlsoap:operation soapAction="http://tempuri.org/setJJZD"/> | |
| 693 | + | |
| 694 | + <wsdl:input name="setJJZDRequest"> | |
| 695 | + | |
| 696 | + <wsdlsoap:body use="literal"/> | |
| 697 | + | |
| 698 | + </wsdl:input> | |
| 699 | + | |
| 700 | + <wsdl:output name="setJJZDResponse"> | |
| 701 | + | |
| 702 | + <wsdlsoap:body use="literal"/> | |
| 703 | + | |
| 704 | + </wsdl:output> | |
| 705 | + | |
| 706 | + </wsdl:operation> | |
| 707 | + | |
| 708 | + </wsdl:binding> | |
| 709 | + | |
| 710 | + <wsdl:service name="WebService"> | |
| 711 | + | |
| 712 | + <wsdl:port binding="impl:WebServiceSoapSoapBinding" name="WebServiceSoap"> | |
| 713 | + | |
| 714 | + <wsdlsoap:address location="http://www.tanway.cn:7280/yyws/services/WebServiceSoap"/> | |
| 715 | + | |
| 716 | + </wsdl:port> | |
| 717 | + | |
| 718 | + </wsdl:service> | |
| 719 | + | |
| 720 | +</wsdl:definitions> | ... | ... |
src/main/java/com/bsth/webService/trafficManage/qp/WebServiceSoapSoapBindingStub.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebServiceSoapSoapBindingStub.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.qp; | |
| 9 | + | |
| 10 | +public class WebServiceSoapSoapBindingStub extends org.apache.axis.client.Stub implements WebServiceSoap_PortType { | |
| 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[11]; | |
| 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("setCL"); | |
| 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 | + oper.addParameter(param); | |
| 31 | + 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); | |
| 32 | + oper.addParameter(param); | |
| 33 | + 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); | |
| 34 | + oper.addParameter(param); | |
| 35 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 36 | + oper.setReturnClass(Results.class); | |
| 37 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setCLResult")); | |
| 38 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 39 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 40 | + _operations[0] = oper; | |
| 41 | + | |
| 42 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 43 | + oper.setName("setLD"); | |
| 44 | + 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); | |
| 45 | + oper.addParameter(param); | |
| 46 | + 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); | |
| 47 | + oper.addParameter(param); | |
| 48 | + 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); | |
| 49 | + oper.addParameter(param); | |
| 50 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 51 | + oper.setReturnClass(Results.class); | |
| 52 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setLDResult")); | |
| 53 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 54 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 55 | + _operations[1] = oper; | |
| 56 | + | |
| 57 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 58 | + oper.setName("setDDRB"); | |
| 59 | + 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); | |
| 60 | + oper.addParameter(param); | |
| 61 | + 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); | |
| 62 | + oper.addParameter(param); | |
| 63 | + 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); | |
| 64 | + oper.addParameter(param); | |
| 65 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 66 | + oper.setReturnClass(Results.class); | |
| 67 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setDDRBResult")); | |
| 68 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 69 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 70 | + _operations[2] = oper; | |
| 71 | + | |
| 72 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 73 | + oper.setName("setJHBC"); | |
| 74 | + 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); | |
| 75 | + oper.addParameter(param); | |
| 76 | + 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); | |
| 77 | + oper.addParameter(param); | |
| 78 | + 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); | |
| 79 | + oper.addParameter(param); | |
| 80 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 81 | + oper.setReturnClass(Results.class); | |
| 82 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setJHBCResult")); | |
| 83 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 84 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 85 | + _operations[3] = oper; | |
| 86 | + | |
| 87 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 88 | + oper.setName("setSKB"); | |
| 89 | + 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); | |
| 90 | + oper.addParameter(param); | |
| 91 | + 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); | |
| 92 | + oper.addParameter(param); | |
| 93 | + 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); | |
| 94 | + oper.addParameter(param); | |
| 95 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 96 | + oper.setReturnClass(Results.class); | |
| 97 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setSKBResult")); | |
| 98 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 99 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 100 | + _operations[4] = oper; | |
| 101 | + | |
| 102 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 103 | + oper.setName("setSJ"); | |
| 104 | + 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); | |
| 105 | + oper.addParameter(param); | |
| 106 | + 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); | |
| 107 | + oper.addParameter(param); | |
| 108 | + 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); | |
| 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/", "setSJResult")); | |
| 113 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 114 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 115 | + _operations[5] = oper; | |
| 116 | + | |
| 117 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 118 | + oper.setName("setLCYH"); | |
| 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 | + oper.addParameter(param); | |
| 121 | + 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); | |
| 122 | + oper.addParameter(param); | |
| 123 | + 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); | |
| 124 | + oper.addParameter(param); | |
| 125 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 126 | + oper.setReturnClass(Results.class); | |
| 127 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setLCYHResult")); | |
| 128 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 129 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 130 | + _operations[6] = oper; | |
| 131 | + | |
| 132 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 133 | + oper.setName("setXLPC"); | |
| 134 | + 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); | |
| 135 | + oper.addParameter(param); | |
| 136 | + 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); | |
| 137 | + oper.addParameter(param); | |
| 138 | + 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); | |
| 139 | + oper.addParameter(param); | |
| 140 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 141 | + oper.setReturnClass(Results.class); | |
| 142 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setXLPCResult")); | |
| 143 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 144 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 145 | + _operations[7] = oper; | |
| 146 | + | |
| 147 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 148 | + oper.setName("setCS"); | |
| 149 | + 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); | |
| 150 | + oper.addParameter(param); | |
| 151 | + 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); | |
| 152 | + oper.addParameter(param); | |
| 153 | + 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); | |
| 154 | + oper.addParameter(param); | |
| 155 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 156 | + oper.setReturnClass(Results.class); | |
| 157 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setCSResult")); | |
| 158 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 159 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 160 | + _operations[8] = oper; | |
| 161 | + | |
| 162 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 163 | + oper.setName("setFZCKGM"); | |
| 164 | + 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); | |
| 165 | + oper.addParameter(param); | |
| 166 | + 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); | |
| 167 | + oper.addParameter(param); | |
| 168 | + 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); | |
| 169 | + oper.addParameter(param); | |
| 170 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 171 | + oper.setReturnClass(Results.class); | |
| 172 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setFZCKGMResult")); | |
| 173 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 174 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 175 | + _operations[9] = oper; | |
| 176 | + | |
| 177 | + } | |
| 178 | + | |
| 179 | + private static void _initOperationDesc2(){ | |
| 180 | + org.apache.axis.description.OperationDesc oper; | |
| 181 | + org.apache.axis.description.ParameterDesc param; | |
| 182 | + oper = new org.apache.axis.description.OperationDesc(); | |
| 183 | + oper.setName("setJJZD"); | |
| 184 | + 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); | |
| 185 | + oper.addParameter(param); | |
| 186 | + 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); | |
| 187 | + oper.addParameter(param); | |
| 188 | + 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); | |
| 189 | + oper.addParameter(param); | |
| 190 | + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/", "Results")); | |
| 191 | + oper.setReturnClass(Results.class); | |
| 192 | + oper.setReturnQName(new javax.xml.namespace.QName("http://tempuri.org/", "setJJZDResult")); | |
| 193 | + oper.setStyle(org.apache.axis.constants.Style.WRAPPED); | |
| 194 | + oper.setUse(org.apache.axis.constants.Use.LITERAL); | |
| 195 | + _operations[10] = oper; | |
| 196 | + | |
| 197 | + } | |
| 198 | + | |
| 199 | + public WebServiceSoapSoapBindingStub() throws org.apache.axis.AxisFault { | |
| 200 | + this(null); | |
| 201 | + } | |
| 202 | + | |
| 203 | + public WebServiceSoapSoapBindingStub(java.net.URL endpointURL, javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { | |
| 204 | + this(service); | |
| 205 | + super.cachedEndpoint = endpointURL; | |
| 206 | + } | |
| 207 | + | |
| 208 | + public WebServiceSoapSoapBindingStub(javax.xml.rpc.Service service) throws org.apache.axis.AxisFault { | |
| 209 | + if (service == null) { | |
| 210 | + super.service = new org.apache.axis.client.Service(); | |
| 211 | + } else { | |
| 212 | + super.service = service; | |
| 213 | + } | |
| 214 | + ((org.apache.axis.client.Service)super.service).setTypeMappingVersion("1.1"); | |
| 215 | + Class cls; | |
| 216 | + javax.xml.namespace.QName qName; | |
| 217 | + javax.xml.namespace.QName qName2; | |
| 218 | + Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class; | |
| 219 | + Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class; | |
| 220 | + Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class; | |
| 221 | + Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class; | |
| 222 | + Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class; | |
| 223 | + Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class; | |
| 224 | + Class simplesf = org.apache.axis.encoding.ser.SimpleSerializerFactory.class; | |
| 225 | + Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class; | |
| 226 | + Class simplelistsf = org.apache.axis.encoding.ser.SimpleListSerializerFactory.class; | |
| 227 | + Class simplelistdf = org.apache.axis.encoding.ser.SimpleListDeserializerFactory.class; | |
| 228 | + qName = new javax.xml.namespace.QName("http://tempuri.org/", "Results"); | |
| 229 | + cachedSerQNames.add(qName); | |
| 230 | + cls = Results.class; | |
| 231 | + cachedSerClasses.add(cls); | |
| 232 | + cachedSerFactories.add(beansf); | |
| 233 | + cachedDeserFactories.add(beandf); | |
| 234 | + | |
| 235 | + } | |
| 236 | + | |
| 237 | + protected org.apache.axis.client.Call createCall() throws java.rmi.RemoteException { | |
| 238 | + try { | |
| 239 | + org.apache.axis.client.Call _call = super._createCall(); | |
| 240 | + if (super.maintainSessionSet) { | |
| 241 | + _call.setMaintainSession(super.maintainSession); | |
| 242 | + } | |
| 243 | + if (super.cachedUsername != null) { | |
| 244 | + _call.setUsername(super.cachedUsername); | |
| 245 | + } | |
| 246 | + if (super.cachedPassword != null) { | |
| 247 | + _call.setPassword(super.cachedPassword); | |
| 248 | + } | |
| 249 | + if (super.cachedEndpoint != null) { | |
| 250 | + _call.setTargetEndpointAddress(super.cachedEndpoint); | |
| 251 | + } | |
| 252 | + if (super.cachedTimeout != null) { | |
| 253 | + _call.setTimeout(super.cachedTimeout); | |
| 254 | + } | |
| 255 | + if (super.cachedPortName != null) { | |
| 256 | + _call.setPortName(super.cachedPortName); | |
| 257 | + } | |
| 258 | + java.util.Enumeration keys = super.cachedProperties.keys(); | |
| 259 | + while (keys.hasMoreElements()) { | |
| 260 | + String key = (String) keys.nextElement(); | |
| 261 | + _call.setProperty(key, super.cachedProperties.get(key)); | |
| 262 | + } | |
| 263 | + // All the type mapping information is registered | |
| 264 | + // when the first call is made. | |
| 265 | + // The type mapping information is actually registered in | |
| 266 | + // the TypeMappingRegistry of the service, which | |
| 267 | + // is the reason why registration is only needed for the first call. | |
| 268 | + synchronized (this) { | |
| 269 | + if (firstCall()) { | |
| 270 | + // must set encoding style before registering serializers | |
| 271 | + _call.setEncodingStyle(null); | |
| 272 | + for (int i = 0; i < cachedSerFactories.size(); ++i) { | |
| 273 | + Class cls = (Class) cachedSerClasses.get(i); | |
| 274 | + javax.xml.namespace.QName qName = | |
| 275 | + (javax.xml.namespace.QName) cachedSerQNames.get(i); | |
| 276 | + Object x = cachedSerFactories.get(i); | |
| 277 | + if (x instanceof Class) { | |
| 278 | + Class sf = (Class) | |
| 279 | + cachedSerFactories.get(i); | |
| 280 | + Class df = (Class) | |
| 281 | + cachedDeserFactories.get(i); | |
| 282 | + _call.registerTypeMapping(cls, qName, sf, df, false); | |
| 283 | + } | |
| 284 | + else if (x instanceof javax.xml.rpc.encoding.SerializerFactory) { | |
| 285 | + org.apache.axis.encoding.SerializerFactory sf = (org.apache.axis.encoding.SerializerFactory) | |
| 286 | + cachedSerFactories.get(i); | |
| 287 | + org.apache.axis.encoding.DeserializerFactory df = (org.apache.axis.encoding.DeserializerFactory) | |
| 288 | + cachedDeserFactories.get(i); | |
| 289 | + _call.registerTypeMapping(cls, qName, sf, df, false); | |
| 290 | + } | |
| 291 | + } | |
| 292 | + } | |
| 293 | + } | |
| 294 | + return _call; | |
| 295 | + } | |
| 296 | + catch (Throwable _t) { | |
| 297 | + throw new org.apache.axis.AxisFault("Failure trying to get the Call object", _t); | |
| 298 | + } | |
| 299 | + } | |
| 300 | + | |
| 301 | + public Results setCL(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 302 | + if (super.cachedEndpoint == null) { | |
| 303 | + throw new org.apache.axis.NoEndPointException(); | |
| 304 | + } | |
| 305 | + org.apache.axis.client.Call _call = createCall(); | |
| 306 | + _call.setOperation(_operations[0]); | |
| 307 | + _call.setUseSOAPAction(true); | |
| 308 | + _call.setSOAPActionURI("http://tempuri.org/setCL"); | |
| 309 | + _call.setEncodingStyle(null); | |
| 310 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 311 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 312 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 313 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setCL")); | |
| 314 | + | |
| 315 | + setRequestHeaders(_call); | |
| 316 | + setAttachments(_call); | |
| 317 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 318 | + | |
| 319 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 320 | + throw (java.rmi.RemoteException)_resp; | |
| 321 | + } | |
| 322 | + else { | |
| 323 | + extractAttachments(_call); | |
| 324 | + try { | |
| 325 | + return (Results) _resp; | |
| 326 | + } catch (Exception _exception) { | |
| 327 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 328 | + } | |
| 329 | + } | |
| 330 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 331 | + throw axisFaultException; | |
| 332 | +} | |
| 333 | + } | |
| 334 | + | |
| 335 | + public Results setLD(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 336 | + if (super.cachedEndpoint == null) { | |
| 337 | + throw new org.apache.axis.NoEndPointException(); | |
| 338 | + } | |
| 339 | + org.apache.axis.client.Call _call = createCall(); | |
| 340 | + _call.setOperation(_operations[1]); | |
| 341 | + _call.setUseSOAPAction(true); | |
| 342 | + _call.setSOAPActionURI("http://tempuri.org/setLD"); | |
| 343 | + _call.setEncodingStyle(null); | |
| 344 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 345 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 346 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 347 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setLD")); | |
| 348 | + | |
| 349 | + setRequestHeaders(_call); | |
| 350 | + setAttachments(_call); | |
| 351 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 352 | + | |
| 353 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 354 | + throw (java.rmi.RemoteException)_resp; | |
| 355 | + } | |
| 356 | + else { | |
| 357 | + extractAttachments(_call); | |
| 358 | + try { | |
| 359 | + return (Results) _resp; | |
| 360 | + } catch (Exception _exception) { | |
| 361 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 362 | + } | |
| 363 | + } | |
| 364 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 365 | + throw axisFaultException; | |
| 366 | +} | |
| 367 | + } | |
| 368 | + | |
| 369 | + public Results setDDRB(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 370 | + if (super.cachedEndpoint == null) { | |
| 371 | + throw new org.apache.axis.NoEndPointException(); | |
| 372 | + } | |
| 373 | + org.apache.axis.client.Call _call = createCall(); | |
| 374 | + _call.setOperation(_operations[2]); | |
| 375 | + _call.setUseSOAPAction(true); | |
| 376 | + _call.setSOAPActionURI("http://tempuri.org/setDDRB"); | |
| 377 | + _call.setEncodingStyle(null); | |
| 378 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 379 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 380 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 381 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setDDRB")); | |
| 382 | + | |
| 383 | + setRequestHeaders(_call); | |
| 384 | + setAttachments(_call); | |
| 385 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 386 | + | |
| 387 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 388 | + throw (java.rmi.RemoteException)_resp; | |
| 389 | + } | |
| 390 | + else { | |
| 391 | + extractAttachments(_call); | |
| 392 | + try { | |
| 393 | + return (Results) _resp; | |
| 394 | + } catch (Exception _exception) { | |
| 395 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 396 | + } | |
| 397 | + } | |
| 398 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 399 | + throw axisFaultException; | |
| 400 | +} | |
| 401 | + } | |
| 402 | + | |
| 403 | + public Results setJHBC(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 404 | + if (super.cachedEndpoint == null) { | |
| 405 | + throw new org.apache.axis.NoEndPointException(); | |
| 406 | + } | |
| 407 | + org.apache.axis.client.Call _call = createCall(); | |
| 408 | + _call.setOperation(_operations[3]); | |
| 409 | + _call.setUseSOAPAction(true); | |
| 410 | + _call.setSOAPActionURI("http://tempuri.org/setJHBC"); | |
| 411 | + _call.setEncodingStyle(null); | |
| 412 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 413 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 414 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 415 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setJHBC")); | |
| 416 | + | |
| 417 | + setRequestHeaders(_call); | |
| 418 | + setAttachments(_call); | |
| 419 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 420 | + | |
| 421 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 422 | + throw (java.rmi.RemoteException)_resp; | |
| 423 | + } | |
| 424 | + else { | |
| 425 | + extractAttachments(_call); | |
| 426 | + try { | |
| 427 | + return (Results) _resp; | |
| 428 | + } catch (Exception _exception) { | |
| 429 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 430 | + } | |
| 431 | + } | |
| 432 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 433 | + throw axisFaultException; | |
| 434 | +} | |
| 435 | + } | |
| 436 | + | |
| 437 | + public Results setSKB(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 438 | + if (super.cachedEndpoint == null) { | |
| 439 | + throw new org.apache.axis.NoEndPointException(); | |
| 440 | + } | |
| 441 | + org.apache.axis.client.Call _call = createCall(); | |
| 442 | + _call.setOperation(_operations[4]); | |
| 443 | + _call.setUseSOAPAction(true); | |
| 444 | + _call.setSOAPActionURI("http://tempuri.org/setSKB"); | |
| 445 | + _call.setEncodingStyle(null); | |
| 446 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 447 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 448 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 449 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setSKB")); | |
| 450 | + | |
| 451 | + setRequestHeaders(_call); | |
| 452 | + setAttachments(_call); | |
| 453 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 454 | + | |
| 455 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 456 | + throw (java.rmi.RemoteException)_resp; | |
| 457 | + } | |
| 458 | + else { | |
| 459 | + extractAttachments(_call); | |
| 460 | + try { | |
| 461 | + return (Results) _resp; | |
| 462 | + } catch (Exception _exception) { | |
| 463 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 464 | + } | |
| 465 | + } | |
| 466 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 467 | + throw axisFaultException; | |
| 468 | +} | |
| 469 | + } | |
| 470 | + | |
| 471 | + public Results setSJ(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 472 | + if (super.cachedEndpoint == null) { | |
| 473 | + throw new org.apache.axis.NoEndPointException(); | |
| 474 | + } | |
| 475 | + org.apache.axis.client.Call _call = createCall(); | |
| 476 | + _call.setOperation(_operations[5]); | |
| 477 | + _call.setUseSOAPAction(true); | |
| 478 | + _call.setSOAPActionURI("http://tempuri.org/setSJ"); | |
| 479 | + _call.setEncodingStyle(null); | |
| 480 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 481 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 482 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 483 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setSJ")); | |
| 484 | + | |
| 485 | + setRequestHeaders(_call); | |
| 486 | + setAttachments(_call); | |
| 487 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 488 | + | |
| 489 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 490 | + throw (java.rmi.RemoteException)_resp; | |
| 491 | + } | |
| 492 | + else { | |
| 493 | + extractAttachments(_call); | |
| 494 | + try { | |
| 495 | + return (Results) _resp; | |
| 496 | + } catch (Exception _exception) { | |
| 497 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 498 | + } | |
| 499 | + } | |
| 500 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 501 | + throw axisFaultException; | |
| 502 | +} | |
| 503 | + } | |
| 504 | + | |
| 505 | + public Results setLCYH(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 506 | + if (super.cachedEndpoint == null) { | |
| 507 | + throw new org.apache.axis.NoEndPointException(); | |
| 508 | + } | |
| 509 | + org.apache.axis.client.Call _call = createCall(); | |
| 510 | + _call.setOperation(_operations[6]); | |
| 511 | + _call.setUseSOAPAction(true); | |
| 512 | + _call.setSOAPActionURI("http://tempuri.org/setLCYH"); | |
| 513 | + _call.setEncodingStyle(null); | |
| 514 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 515 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 516 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 517 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setLCYH")); | |
| 518 | + | |
| 519 | + setRequestHeaders(_call); | |
| 520 | + setAttachments(_call); | |
| 521 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 522 | + | |
| 523 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 524 | + throw (java.rmi.RemoteException)_resp; | |
| 525 | + } | |
| 526 | + else { | |
| 527 | + extractAttachments(_call); | |
| 528 | + try { | |
| 529 | + return (Results) _resp; | |
| 530 | + } catch (Exception _exception) { | |
| 531 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 532 | + } | |
| 533 | + } | |
| 534 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 535 | + throw axisFaultException; | |
| 536 | +} | |
| 537 | + } | |
| 538 | + | |
| 539 | + public Results setXLPC(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 540 | + if (super.cachedEndpoint == null) { | |
| 541 | + throw new org.apache.axis.NoEndPointException(); | |
| 542 | + } | |
| 543 | + org.apache.axis.client.Call _call = createCall(); | |
| 544 | + _call.setOperation(_operations[7]); | |
| 545 | + _call.setUseSOAPAction(true); | |
| 546 | + _call.setSOAPActionURI("http://tempuri.org/setXLPC"); | |
| 547 | + _call.setEncodingStyle(null); | |
| 548 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 549 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 550 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 551 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setXLPC")); | |
| 552 | + | |
| 553 | + setRequestHeaders(_call); | |
| 554 | + setAttachments(_call); | |
| 555 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 556 | + | |
| 557 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 558 | + throw (java.rmi.RemoteException)_resp; | |
| 559 | + } | |
| 560 | + else { | |
| 561 | + extractAttachments(_call); | |
| 562 | + try { | |
| 563 | + return (Results) _resp; | |
| 564 | + } catch (Exception _exception) { | |
| 565 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 566 | + } | |
| 567 | + } | |
| 568 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 569 | + throw axisFaultException; | |
| 570 | +} | |
| 571 | + } | |
| 572 | + | |
| 573 | + public Results setCS(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 574 | + if (super.cachedEndpoint == null) { | |
| 575 | + throw new org.apache.axis.NoEndPointException(); | |
| 576 | + } | |
| 577 | + org.apache.axis.client.Call _call = createCall(); | |
| 578 | + _call.setOperation(_operations[8]); | |
| 579 | + _call.setUseSOAPAction(true); | |
| 580 | + _call.setSOAPActionURI("http://tempuri.org/setCS"); | |
| 581 | + _call.setEncodingStyle(null); | |
| 582 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 583 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 584 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 585 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setCS")); | |
| 586 | + | |
| 587 | + setRequestHeaders(_call); | |
| 588 | + setAttachments(_call); | |
| 589 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 590 | + | |
| 591 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 592 | + throw (java.rmi.RemoteException)_resp; | |
| 593 | + } | |
| 594 | + else { | |
| 595 | + extractAttachments(_call); | |
| 596 | + try { | |
| 597 | + return (Results) _resp; | |
| 598 | + } catch (Exception _exception) { | |
| 599 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 600 | + } | |
| 601 | + } | |
| 602 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 603 | + throw axisFaultException; | |
| 604 | +} | |
| 605 | + } | |
| 606 | + | |
| 607 | + public Results setFZCKGM(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 608 | + if (super.cachedEndpoint == null) { | |
| 609 | + throw new org.apache.axis.NoEndPointException(); | |
| 610 | + } | |
| 611 | + org.apache.axis.client.Call _call = createCall(); | |
| 612 | + _call.setOperation(_operations[9]); | |
| 613 | + _call.setUseSOAPAction(true); | |
| 614 | + _call.setSOAPActionURI("http://tempuri.org/setFZCKGM"); | |
| 615 | + _call.setEncodingStyle(null); | |
| 616 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 617 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 618 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 619 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setFZCKGM")); | |
| 620 | + | |
| 621 | + setRequestHeaders(_call); | |
| 622 | + setAttachments(_call); | |
| 623 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 624 | + | |
| 625 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 626 | + throw (java.rmi.RemoteException)_resp; | |
| 627 | + } | |
| 628 | + else { | |
| 629 | + extractAttachments(_call); | |
| 630 | + try { | |
| 631 | + return (Results) _resp; | |
| 632 | + } catch (Exception _exception) { | |
| 633 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 634 | + } | |
| 635 | + } | |
| 636 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 637 | + throw axisFaultException; | |
| 638 | +} | |
| 639 | + } | |
| 640 | + | |
| 641 | + public Results setJJZD(String uName, String uPass, String sXml) throws java.rmi.RemoteException { | |
| 642 | + if (super.cachedEndpoint == null) { | |
| 643 | + throw new org.apache.axis.NoEndPointException(); | |
| 644 | + } | |
| 645 | + org.apache.axis.client.Call _call = createCall(); | |
| 646 | + _call.setOperation(_operations[10]); | |
| 647 | + _call.setUseSOAPAction(true); | |
| 648 | + _call.setSOAPActionURI("http://tempuri.org/setJJZD"); | |
| 649 | + _call.setEncodingStyle(null); | |
| 650 | + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR, Boolean.FALSE); | |
| 651 | + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS, Boolean.FALSE); | |
| 652 | + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS); | |
| 653 | + _call.setOperationName(new javax.xml.namespace.QName("http://tempuri.org/", "setJJZD")); | |
| 654 | + | |
| 655 | + setRequestHeaders(_call); | |
| 656 | + setAttachments(_call); | |
| 657 | + try { Object _resp = _call.invoke(new Object[] {uName, uPass, sXml}); | |
| 658 | + | |
| 659 | + if (_resp instanceof java.rmi.RemoteException) { | |
| 660 | + throw (java.rmi.RemoteException)_resp; | |
| 661 | + } | |
| 662 | + else { | |
| 663 | + extractAttachments(_call); | |
| 664 | + try { | |
| 665 | + return (Results) _resp; | |
| 666 | + } catch (Exception _exception) { | |
| 667 | + return (Results) org.apache.axis.utils.JavaUtils.convert(_resp, Results.class); | |
| 668 | + } | |
| 669 | + } | |
| 670 | + } catch (org.apache.axis.AxisFault axisFaultException) { | |
| 671 | + throw axisFaultException; | |
| 672 | +} | |
| 673 | + } | |
| 674 | + | |
| 675 | +} | ... | ... |
src/main/java/com/bsth/webService/trafficManage/qp/WebServiceSoap_PortType.java
0 → 100644
| 1 | +/** | |
| 2 | + * WebServiceSoap_PortType.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.qp; | |
| 9 | + | |
| 10 | +public interface WebServiceSoap_PortType extends java.rmi.Remote { | |
| 11 | + public Results setCL(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 12 | + public Results setLD(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 13 | + public Results setDDRB(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 14 | + public Results setJHBC(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 15 | + public Results setSKB(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 16 | + public Results setSJ(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 17 | + public Results setLCYH(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 18 | + public Results setXLPC(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 19 | + public Results setCS(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 20 | + public Results setFZCKGM(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 21 | + public Results setJJZD(String uName, String uPass, String sXml) throws java.rmi.RemoteException; | |
| 22 | +} | ... | ... |