Commit 612d7cfb14b9e53d256b8cae1b8594bfa4585933

Authored by zq
1 parent 579ddfa7

运管处接口

Showing 20 changed files with 2501 additions and 3 deletions
... ... @@ -196,7 +196,17 @@
196 196 <groupId>org.bouncycastle</groupId>
197 197 <artifactId>bcprov-jdk15on</artifactId>
198 198 <version>1.52</version>
199   - </dependency>
  199 + </dependency>
  200 + <dependency>
  201 + <groupId>axis</groupId>
  202 + <artifactId>axis</artifactId>
  203 + <version>1.4</version>
  204 + </dependency>
  205 + <dependency>
  206 + <groupId>javax.xml</groupId>
  207 + <artifactId>jaxrpc-api</artifactId>
  208 + <version>1.1</version>
  209 + </dependency>
200 210 </dependencies>
201 211  
202 212 <dependencyManagement>
... ...
src/main/java/com/bsth/service/impl/TrafficManageServiceImpl.java
1 1 package com.bsth.service.impl;
2 2  
  3 +import java.util.Iterator;
  4 +
3 5 import org.springframework.beans.factory.annotation.Autowired;
4 6 import org.springframework.stereotype.Service;
5 7  
6 8 import com.bsth.entity.Line;
7 9 import com.bsth.repository.LineRepository;
8   -import com.bsth.service.LineService;
9 10 import com.bsth.service.TrafficManageService;
  11 +import com.bsth.webService.trafficManage.geotool.services.Internal;
  12 +import com.bsth.webService.trafficManage.geotool.services.InternalPortType;
10 13  
11 14 /**
12 15 *
... ... @@ -30,13 +33,26 @@ public class TrafficManageServiceImpl implements TrafficManageService{
30 33 @Autowired
31 34 private LineRepository repository;
32 35  
  36 + // 运管处接口
  37 + private InternalPortType portType = new Internal().getInternalHttpSoap11Endpoint();
  38 + // 用户名
  39 + private final String userName = "pudong";
  40 + // 密码
  41 + private final String password = "pudong123";
  42 +
33 43 /**
34 44 * 获取线路编码
35 45 *
36 46 * @return int <lineCode:线路编码>
37 47 */
38 48 public String setXL() {
39   - String result = "abc";
  49 + String result = "";
  50 + StringBuffer sbBuffer = new StringBuffer();
  51 + Iterator<Line> lines = repository.findAll().iterator();
  52 + if(lines.hasNext()){
  53 + Line line = lines.next();
  54 + }
  55 + System.out.println(portType.setXL(sbBuffer.toString(), userName, password));;
40 56 System.out.println("abdfedddddddddddddddddddddddddddd");
41 57 return result;
42 58 }
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/DownloadAllDataFile.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;args0&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;element name=&quot;args1&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  25 + * &lt;/sequence&gt;
  26 + * &lt;/restriction&gt;
  27 + * &lt;/complexContent&gt;
  28 + * &lt;/complexType&gt;
  29 + * </pre>
  30 + *
  31 + *
  32 + */
  33 +@XmlAccessorType(XmlAccessType.FIELD)
  34 +@XmlType(name = "", propOrder = { "args0", "args1" })
  35 +@XmlRootElement(name = "downloadAllDataFile")
  36 +public class DownloadAllDataFile {
  37 +
  38 + @XmlElementRef(name = "args0", namespace = "http://services.geotool.com", type = JAXBElement.class)
  39 + protected JAXBElement<String> args0;
  40 + @XmlElementRef(name = "args1", namespace = "http://services.geotool.com", type = JAXBElement.class)
  41 + protected JAXBElement<String> args1;
  42 +
  43 + /**
  44 + * Gets the value of the args0 property.
  45 + *
  46 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  47 + *
  48 + */
  49 + public JAXBElement<String> getArgs0() {
  50 + return args0;
  51 + }
  52 +
  53 + /**
  54 + * Sets the value of the args0 property.
  55 + *
  56 + * @param value
  57 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  58 + *
  59 + */
  60 + public void setArgs0(JAXBElement<String> value) {
  61 + this.args0 = ((JAXBElement<String>) value);
  62 + }
  63 +
  64 + /**
  65 + * Gets the value of the args1 property.
  66 + *
  67 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  68 + *
  69 + */
  70 + public JAXBElement<String> getArgs1() {
  71 + return args1;
  72 + }
  73 +
  74 + /**
  75 + * Sets the value of the args1 property.
  76 + *
  77 + * @param value
  78 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  79 + *
  80 + */
  81 + public void setArgs1(JAXBElement<String> value) {
  82 + this.args1 = ((JAXBElement<String>) value);
  83 + }
  84 +
  85 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/DownloadAllDataFileResponse.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;return&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}base64Binary&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;/sequence&gt;
  25 + * &lt;/restriction&gt;
  26 + * &lt;/complexContent&gt;
  27 + * &lt;/complexType&gt;
  28 + * </pre>
  29 + *
  30 + *
  31 + */
  32 +@XmlAccessorType(XmlAccessType.FIELD)
  33 +@XmlType(name = "", propOrder = { "_return" })
  34 +@XmlRootElement(name = "downloadAllDataFileResponse")
  35 +public class DownloadAllDataFileResponse {
  36 +
  37 + @XmlElementRef(name = "return", namespace = "http://services.geotool.com", type = JAXBElement.class)
  38 + protected JAXBElement<byte[]> _return;
  39 +
  40 + /**
  41 + * Gets the value of the return property.
  42 + *
  43 + * @return possible object is {@link JAXBElement }{@code <}{@link byte[]}{@code >}
  44 + *
  45 + */
  46 + public JAXBElement<byte[]> getReturn() {
  47 + return _return;
  48 + }
  49 +
  50 + /**
  51 + * Sets the value of the return property.
  52 + *
  53 + * @param value
  54 + * allowed object is {@link JAXBElement }{@code <}{@link byte[]}{@code >}
  55 + *
  56 + */
  57 + public void setReturn(JAXBElement<byte[]> value) {
  58 + this._return = ((JAXBElement<byte[]>) value);
  59 + }
  60 +
  61 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/DownloadIncreaseDataFile.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;args0&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;element name=&quot;args1&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  25 + * &lt;element name=&quot;args2&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  26 + * &lt;/sequence&gt;
  27 + * &lt;/restriction&gt;
  28 + * &lt;/complexContent&gt;
  29 + * &lt;/complexType&gt;
  30 + * </pre>
  31 + *
  32 + *
  33 + */
  34 +@XmlAccessorType(XmlAccessType.FIELD)
  35 +@XmlType(name = "", propOrder = { "args0", "args1", "args2" })
  36 +@XmlRootElement(name = "downloadIncreaseDataFile")
  37 +public class DownloadIncreaseDataFile {
  38 +
  39 + @XmlElementRef(name = "args0", namespace = "http://services.geotool.com", type = JAXBElement.class)
  40 + protected JAXBElement<String> args0;
  41 + @XmlElementRef(name = "args1", namespace = "http://services.geotool.com", type = JAXBElement.class)
  42 + protected JAXBElement<String> args1;
  43 + @XmlElementRef(name = "args2", namespace = "http://services.geotool.com", type = JAXBElement.class)
  44 + protected JAXBElement<String> args2;
  45 +
  46 + /**
  47 + * Gets the value of the args0 property.
  48 + *
  49 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  50 + *
  51 + */
  52 + public JAXBElement<String> getArgs0() {
  53 + return args0;
  54 + }
  55 +
  56 + /**
  57 + * Sets the value of the args0 property.
  58 + *
  59 + * @param value
  60 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  61 + *
  62 + */
  63 + public void setArgs0(JAXBElement<String> value) {
  64 + this.args0 = ((JAXBElement<String>) value);
  65 + }
  66 +
  67 + /**
  68 + * Gets the value of the args1 property.
  69 + *
  70 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  71 + *
  72 + */
  73 + public JAXBElement<String> getArgs1() {
  74 + return args1;
  75 + }
  76 +
  77 + /**
  78 + * Sets the value of the args1 property.
  79 + *
  80 + * @param value
  81 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  82 + *
  83 + */
  84 + public void setArgs1(JAXBElement<String> value) {
  85 + this.args1 = ((JAXBElement<String>) value);
  86 + }
  87 +
  88 + /**
  89 + * Gets the value of the args2 property.
  90 + *
  91 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  92 + *
  93 + */
  94 + public JAXBElement<String> getArgs2() {
  95 + return args2;
  96 + }
  97 +
  98 + /**
  99 + * Sets the value of the args2 property.
  100 + *
  101 + * @param value
  102 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  103 + *
  104 + */
  105 + public void setArgs2(JAXBElement<String> value) {
  106 + this.args2 = ((JAXBElement<String>) value);
  107 + }
  108 +
  109 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/DownloadIncreaseDataFileResponse.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;return&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}base64Binary&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;/sequence&gt;
  25 + * &lt;/restriction&gt;
  26 + * &lt;/complexContent&gt;
  27 + * &lt;/complexType&gt;
  28 + * </pre>
  29 + *
  30 + *
  31 + */
  32 +@XmlAccessorType(XmlAccessType.FIELD)
  33 +@XmlType(name = "", propOrder = { "_return" })
  34 +@XmlRootElement(name = "downloadIncreaseDataFileResponse")
  35 +public class DownloadIncreaseDataFileResponse {
  36 +
  37 + @XmlElementRef(name = "return", namespace = "http://services.geotool.com", type = JAXBElement.class)
  38 + protected JAXBElement<byte[]> _return;
  39 +
  40 + /**
  41 + * Gets the value of the return property.
  42 + *
  43 + * @return possible object is {@link JAXBElement }{@code <}{@link byte[]}{@code >}
  44 + *
  45 + */
  46 + public JAXBElement<byte[]> getReturn() {
  47 + return _return;
  48 + }
  49 +
  50 + /**
  51 + * Sets the value of the return property.
  52 + *
  53 + * @param value
  54 + * allowed object is {@link JAXBElement }{@code <}{@link byte[]}{@code >}
  55 + *
  56 + */
  57 + public void setReturn(JAXBElement<byte[]> value) {
  58 + this._return = ((JAXBElement<byte[]>) value);
  59 + }
  60 +
  61 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/Internal.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import java.net.MalformedURLException;
  4 +import java.net.URL;
  5 +import java.util.logging.Logger;
  6 +import javax.xml.namespace.QName;
  7 +import javax.xml.ws.Service;
  8 +import javax.xml.ws.WebEndpoint;
  9 +import javax.xml.ws.WebServiceClient;
  10 +
  11 +/**
  12 + * This class was generated by the JAX-WS RI. JAX-WS RI 2.1.3-hudson-390-
  13 + * Generated source version: 2.0
  14 + * <p>
  15 + * An example of how this class may be used:
  16 + *
  17 + * <pre>
  18 + * Internal service = new Internal();
  19 + * InternalPortType portType = service.getInternalHttpSoap11Endpoint();
  20 + * portType.downloadIncreaseDataFile(...);
  21 + * </pre>
  22 + *
  23 + * </p>
  24 + *
  25 + */
  26 +@WebServiceClient(name = "Internal", targetNamespace = "http://services.geotool.com", wsdlLocation = "http://218.242.195.71:7000/TransManage/services/Internal?wsdl")
  27 +public class Internal extends Service {
  28 +
  29 + private final static URL INTERNAL_WSDL_LOCATION;
  30 + private final static Logger logger = Logger
  31 + .getLogger(com.bsth.webService.trafficManage.geotool.services.Internal.class.getName());
  32 +
  33 + static {
  34 + URL url = null;
  35 + try {
  36 + URL baseUrl;
  37 + baseUrl = com.bsth.webService.trafficManage.geotool.services.Internal.class.getResource(".");
  38 + url = new URL(baseUrl,
  39 + "http://218.242.195.71:7000/TransManage/services/Internal?wsdl");
  40 + } catch (MalformedURLException e) {
  41 + logger
  42 + .warning("Failed to create URL for the wsdl Location: 'http://218.242.195.71:7000/TransManage/services/Internal?wsdl', retrying as a local file");
  43 + logger.warning(e.getMessage());
  44 + }
  45 + INTERNAL_WSDL_LOCATION = url;
  46 + }
  47 +
  48 + public Internal(URL wsdlLocation, QName serviceName) {
  49 + super(wsdlLocation, serviceName);
  50 + }
  51 +
  52 + public Internal() {
  53 + super(INTERNAL_WSDL_LOCATION, new QName("http://services.geotool.com",
  54 + "Internal"));
  55 + }
  56 +
  57 + /**
  58 + *
  59 + * @return returns InternalPortType
  60 + */
  61 + @WebEndpoint(name = "InternalHttpSoap11Endpoint")
  62 + public InternalPortType getInternalHttpSoap11Endpoint() {
  63 + return super.getPort(new QName("http://services.geotool.com",
  64 + "InternalHttpSoap11Endpoint"), InternalPortType.class);
  65 + }
  66 +
  67 + /**
  68 + *
  69 + * @return returns InternalPortType
  70 + */
  71 + @WebEndpoint(name = "InternalHttpSoap12Endpoint")
  72 + public InternalPortType getInternalHttpSoap12Endpoint() {
  73 + return super.getPort(new QName("http://services.geotool.com",
  74 + "InternalHttpSoap12Endpoint"), InternalPortType.class);
  75 + }
  76 +
  77 + /**
  78 + *
  79 + * @return returns InternalPortType
  80 + */
  81 + @WebEndpoint(name = "InternalHttpEndpoint")
  82 + public InternalPortType getInternalHttpEndpoint() {
  83 + return super.getPort(new QName("http://services.geotool.com",
  84 + "InternalHttpEndpoint"), InternalPortType.class);
  85 + }
  86 +
  87 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/InternalPortType.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.jws.WebMethod;
  4 +import javax.jws.WebParam;
  5 +import javax.jws.WebResult;
  6 +import javax.jws.WebService;
  7 +import javax.xml.ws.RequestWrapper;
  8 +import javax.xml.ws.ResponseWrapper;
  9 +
  10 +/**
  11 + * This class was generated by the JAX-WS RI. JAX-WS RI 2.1.3-hudson-390-
  12 + * Generated source version: 2.0
  13 + *
  14 + */
  15 +@WebService(name = "InternalPortType", targetNamespace = "http://services.geotool.com")
  16 +public interface InternalPortType {
  17 +
  18 + /**
  19 + *
  20 + * @param args2
  21 + * @param args0
  22 + * @param args1
  23 + * @return returns byte[]
  24 + */
  25 + @WebMethod(action = "urn:downloadIncreaseDataFile")
  26 + @WebResult(targetNamespace = "http://services.geotool.com")
  27 + @RequestWrapper(localName = "downloadIncreaseDataFile", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.DownloadIncreaseDataFile")
  28 + @ResponseWrapper(localName = "downloadIncreaseDataFileResponse", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.DownloadIncreaseDataFileResponse")
  29 + public byte[] downloadIncreaseDataFile(
  30 + @WebParam(name = "args0", targetNamespace = "http://services.geotool.com")
  31 + String args0,
  32 + @WebParam(name = "args1", targetNamespace = "http://services.geotool.com")
  33 + String args1,
  34 + @WebParam(name = "args2", targetNamespace = "http://services.geotool.com")
  35 + String args2);
  36 +
  37 + /**
  38 + *
  39 + * @param args0
  40 + * @return returns java.lang.String
  41 + */
  42 + @WebMethod(operationName = "ZBUploadLineStation", action = "urn:ZBUploadLineStation")
  43 + @WebResult(targetNamespace = "http://services.geotool.com")
  44 + @RequestWrapper(localName = "ZBUploadLineStation", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.ZBUploadLineStation")
  45 + @ResponseWrapper(localName = "ZBUploadLineStationResponse", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.ZBUploadLineStationResponse")
  46 + public String zbUploadLineStation(
  47 + @WebParam(name = "args0", targetNamespace = "http://services.geotool.com")
  48 + String args0);
  49 +
  50 + /**
  51 + *
  52 + * @param args2
  53 + * @param args0
  54 + * @param args1
  55 + * @return returns java.lang.String
  56 + */
  57 + @WebMethod(action = "urn:setXL")
  58 + @WebResult(targetNamespace = "http://services.geotool.com")
  59 + @RequestWrapper(localName = "setXL", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.SetXL")
  60 + @ResponseWrapper(localName = "setXLResponse", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.SetXLResponse")
  61 + public String setXL(
  62 + @WebParam(name = "args0", targetNamespace = "http://services.geotool.com")
  63 + String args0,
  64 + @WebParam(name = "args1", targetNamespace = "http://services.geotool.com")
  65 + String args1,
  66 + @WebParam(name = "args2", targetNamespace = "http://services.geotool.com")
  67 + String args2);
  68 +
  69 + /**
  70 + *
  71 + * @param args0
  72 + * @param args1
  73 + * @return returns byte[]
  74 + */
  75 + @WebMethod(action = "urn:downloadAllDataFile")
  76 + @WebResult(targetNamespace = "http://services.geotool.com")
  77 + @RequestWrapper(localName = "downloadAllDataFile", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.DownloadAllDataFile")
  78 + @ResponseWrapper(localName = "downloadAllDataFileResponse", targetNamespace = "http://services.geotool.com", className = "com.geotool.services.DownloadAllDataFileResponse")
  79 + public byte[] downloadAllDataFile(
  80 + @WebParam(name = "args0", targetNamespace = "http://services.geotool.com")
  81 + String args0,
  82 + @WebParam(name = "args1", targetNamespace = "http://services.geotool.com")
  83 + String args1);
  84 +
  85 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/ObjectFactory.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlElementDecl;
  5 +import javax.xml.bind.annotation.XmlRegistry;
  6 +import javax.xml.namespace.QName;
  7 +
  8 +/**
  9 + * This object contains factory methods for each Java content interface and Java
  10 + * element interface generated in the com.geotool.services package.
  11 + * <p>
  12 + * An ObjectFactory allows you to programatically construct new instances of the
  13 + * Java representation for XML content. The Java representation of XML content
  14 + * can consist of schema derived interfaces and classes representing the binding
  15 + * of schema type definitions, element declarations and model groups. Factory
  16 + * methods for each of these are provided in this class.
  17 + *
  18 + */
  19 +@XmlRegistry
  20 +public class ObjectFactory {
  21 +
  22 + private final static QName _ZBUploadLineStationArgs0_QNAME = new QName(
  23 + "http://services.geotool.com", "args0");
  24 + private final static QName _DownloadIncreaseDataFileArgs2_QNAME = new QName(
  25 + "http://services.geotool.com", "args2");
  26 + private final static QName _DownloadIncreaseDataFileArgs1_QNAME = new QName(
  27 + "http://services.geotool.com", "args1");
  28 + private final static QName _DownloadAllDataFileResponseReturn_QNAME = new QName(
  29 + "http://services.geotool.com", "return");
  30 +
  31 + /**
  32 + * Create a new ObjectFactory that can be used to create new instances of
  33 + * schema derived classes for package: com.geotool.services
  34 + *
  35 + */
  36 + public ObjectFactory() {
  37 + }
  38 +
  39 + /**
  40 + * Create an instance of {@link ZBUploadLineStation }
  41 + *
  42 + */
  43 + public ZBUploadLineStation createZBUploadLineStation() {
  44 + return new ZBUploadLineStation();
  45 + }
  46 +
  47 + /**
  48 + * Create an instance of {@link DownloadIncreaseDataFile }
  49 + *
  50 + */
  51 + public DownloadIncreaseDataFile createDownloadIncreaseDataFile() {
  52 + return new DownloadIncreaseDataFile();
  53 + }
  54 +
  55 + /**
  56 + * Create an instance of {@link SetXL }
  57 + *
  58 + */
  59 + public SetXL createSetXL() {
  60 + return new SetXL();
  61 + }
  62 +
  63 + /**
  64 + * Create an instance of {@link DownloadAllDataFileResponse }
  65 + *
  66 + */
  67 + public DownloadAllDataFileResponse createDownloadAllDataFileResponse() {
  68 + return new DownloadAllDataFileResponse();
  69 + }
  70 +
  71 + /**
  72 + * Create an instance of {@link ZBUploadLineStationResponse }
  73 + *
  74 + */
  75 + public ZBUploadLineStationResponse createZBUploadLineStationResponse() {
  76 + return new ZBUploadLineStationResponse();
  77 + }
  78 +
  79 + /**
  80 + * Create an instance of {@link DownloadAllDataFile }
  81 + *
  82 + */
  83 + public DownloadAllDataFile createDownloadAllDataFile() {
  84 + return new DownloadAllDataFile();
  85 + }
  86 +
  87 + /**
  88 + * Create an instance of {@link DownloadIncreaseDataFileResponse }
  89 + *
  90 + */
  91 + public DownloadIncreaseDataFileResponse createDownloadIncreaseDataFileResponse() {
  92 + return new DownloadIncreaseDataFileResponse();
  93 + }
  94 +
  95 + /**
  96 + * Create an instance of {@link SetXLResponse }
  97 + *
  98 + */
  99 + public SetXLResponse createSetXLResponse() {
  100 + return new SetXLResponse();
  101 + }
  102 +
  103 + /**
  104 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  105 + *
  106 + */
  107 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args0", scope = ZBUploadLineStation.class)
  108 + public JAXBElement<String> createZBUploadLineStationArgs0(String value) {
  109 + return new JAXBElement<String>(_ZBUploadLineStationArgs0_QNAME,
  110 + String.class, ZBUploadLineStation.class, value);
  111 + }
  112 +
  113 + /**
  114 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  115 + *
  116 + */
  117 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args2", scope = DownloadIncreaseDataFile.class)
  118 + public JAXBElement<String> createDownloadIncreaseDataFileArgs2(String value) {
  119 + return new JAXBElement<String>(_DownloadIncreaseDataFileArgs2_QNAME,
  120 + String.class, DownloadIncreaseDataFile.class, value);
  121 + }
  122 +
  123 + /**
  124 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  125 + *
  126 + */
  127 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args0", scope = DownloadIncreaseDataFile.class)
  128 + public JAXBElement<String> createDownloadIncreaseDataFileArgs0(String value) {
  129 + return new JAXBElement<String>(_ZBUploadLineStationArgs0_QNAME,
  130 + String.class, DownloadIncreaseDataFile.class, value);
  131 + }
  132 +
  133 + /**
  134 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  135 + *
  136 + */
  137 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args1", scope = DownloadIncreaseDataFile.class)
  138 + public JAXBElement<String> createDownloadIncreaseDataFileArgs1(String value) {
  139 + return new JAXBElement<String>(_DownloadIncreaseDataFileArgs1_QNAME,
  140 + String.class, DownloadIncreaseDataFile.class, value);
  141 + }
  142 +
  143 + /**
  144 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  145 + *
  146 + */
  147 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args2", scope = SetXL.class)
  148 + public JAXBElement<String> createSetXLArgs2(String value) {
  149 + return new JAXBElement<String>(_DownloadIncreaseDataFileArgs2_QNAME,
  150 + String.class, SetXL.class, value);
  151 + }
  152 +
  153 + /**
  154 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  155 + *
  156 + */
  157 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args0", scope = SetXL.class)
  158 + public JAXBElement<String> createSetXLArgs0(String value) {
  159 + return new JAXBElement<String>(_ZBUploadLineStationArgs0_QNAME,
  160 + String.class, SetXL.class, value);
  161 + }
  162 +
  163 + /**
  164 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  165 + *
  166 + */
  167 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args1", scope = SetXL.class)
  168 + public JAXBElement<String> createSetXLArgs1(String value) {
  169 + return new JAXBElement<String>(_DownloadIncreaseDataFileArgs1_QNAME,
  170 + String.class, SetXL.class, value);
  171 + }
  172 +
  173 + /**
  174 + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
  175 + *
  176 + */
  177 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "return", scope = DownloadAllDataFileResponse.class)
  178 + public JAXBElement<byte[]> createDownloadAllDataFileResponseReturn(
  179 + byte[] value) {
  180 + return new JAXBElement<byte[]>(
  181 + _DownloadAllDataFileResponseReturn_QNAME, byte[].class,
  182 + DownloadAllDataFileResponse.class, ((byte[]) value));
  183 + }
  184 +
  185 + /**
  186 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  187 + *
  188 + */
  189 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "return", scope = ZBUploadLineStationResponse.class)
  190 + public JAXBElement<String> createZBUploadLineStationResponseReturn(
  191 + String value) {
  192 + return new JAXBElement<String>(
  193 + _DownloadAllDataFileResponseReturn_QNAME, String.class,
  194 + ZBUploadLineStationResponse.class, value);
  195 + }
  196 +
  197 + /**
  198 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  199 + *
  200 + */
  201 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args0", scope = DownloadAllDataFile.class)
  202 + public JAXBElement<String> createDownloadAllDataFileArgs0(String value) {
  203 + return new JAXBElement<String>(_ZBUploadLineStationArgs0_QNAME,
  204 + String.class, DownloadAllDataFile.class, value);
  205 + }
  206 +
  207 + /**
  208 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  209 + *
  210 + */
  211 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "args1", scope = DownloadAllDataFile.class)
  212 + public JAXBElement<String> createDownloadAllDataFileArgs1(String value) {
  213 + return new JAXBElement<String>(_DownloadIncreaseDataFileArgs1_QNAME,
  214 + String.class, DownloadAllDataFile.class, value);
  215 + }
  216 +
  217 + /**
  218 + * Create an instance of {@link JAXBElement }{@code <}{@link byte[]}{@code >}}
  219 + *
  220 + */
  221 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "return", scope = DownloadIncreaseDataFileResponse.class)
  222 + public JAXBElement<byte[]> createDownloadIncreaseDataFileResponseReturn(
  223 + byte[] value) {
  224 + return new JAXBElement<byte[]>(
  225 + _DownloadAllDataFileResponseReturn_QNAME, byte[].class,
  226 + DownloadIncreaseDataFileResponse.class, ((byte[]) value));
  227 + }
  228 +
  229 + /**
  230 + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}}
  231 + *
  232 + */
  233 + @XmlElementDecl(namespace = "http://services.geotool.com", name = "return", scope = SetXLResponse.class)
  234 + public JAXBElement<String> createSetXLResponseReturn(String value) {
  235 + return new JAXBElement<String>(
  236 + _DownloadAllDataFileResponseReturn_QNAME, String.class,
  237 + SetXLResponse.class, value);
  238 + }
  239 +
  240 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/SetXL.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;args0&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;element name=&quot;args1&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  25 + * &lt;element name=&quot;args2&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  26 + * &lt;/sequence&gt;
  27 + * &lt;/restriction&gt;
  28 + * &lt;/complexContent&gt;
  29 + * &lt;/complexType&gt;
  30 + * </pre>
  31 + *
  32 + *
  33 + */
  34 +@XmlAccessorType(XmlAccessType.FIELD)
  35 +@XmlType(name = "", propOrder = { "args0", "args1", "args2" })
  36 +@XmlRootElement(name = "setXL")
  37 +public class SetXL {
  38 +
  39 + @XmlElementRef(name = "args0", namespace = "http://services.geotool.com", type = JAXBElement.class)
  40 + protected JAXBElement<String> args0;
  41 + @XmlElementRef(name = "args1", namespace = "http://services.geotool.com", type = JAXBElement.class)
  42 + protected JAXBElement<String> args1;
  43 + @XmlElementRef(name = "args2", namespace = "http://services.geotool.com", type = JAXBElement.class)
  44 + protected JAXBElement<String> args2;
  45 +
  46 + /**
  47 + * Gets the value of the args0 property.
  48 + *
  49 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  50 + *
  51 + */
  52 + public JAXBElement<String> getArgs0() {
  53 + return args0;
  54 + }
  55 +
  56 + /**
  57 + * Sets the value of the args0 property.
  58 + *
  59 + * @param value
  60 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  61 + *
  62 + */
  63 + public void setArgs0(JAXBElement<String> value) {
  64 + this.args0 = ((JAXBElement<String>) value);
  65 + }
  66 +
  67 + /**
  68 + * Gets the value of the args1 property.
  69 + *
  70 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  71 + *
  72 + */
  73 + public JAXBElement<String> getArgs1() {
  74 + return args1;
  75 + }
  76 +
  77 + /**
  78 + * Sets the value of the args1 property.
  79 + *
  80 + * @param value
  81 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  82 + *
  83 + */
  84 + public void setArgs1(JAXBElement<String> value) {
  85 + this.args1 = ((JAXBElement<String>) value);
  86 + }
  87 +
  88 + /**
  89 + * Gets the value of the args2 property.
  90 + *
  91 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  92 + *
  93 + */
  94 + public JAXBElement<String> getArgs2() {
  95 + return args2;
  96 + }
  97 +
  98 + /**
  99 + * Sets the value of the args2 property.
  100 + *
  101 + * @param value
  102 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  103 + *
  104 + */
  105 + public void setArgs2(JAXBElement<String> value) {
  106 + this.args2 = ((JAXBElement<String>) value);
  107 + }
  108 +
  109 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/SetXLResponse.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;return&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;/sequence&gt;
  25 + * &lt;/restriction&gt;
  26 + * &lt;/complexContent&gt;
  27 + * &lt;/complexType&gt;
  28 + * </pre>
  29 + *
  30 + *
  31 + */
  32 +@XmlAccessorType(XmlAccessType.FIELD)
  33 +@XmlType(name = "", propOrder = { "_return" })
  34 +@XmlRootElement(name = "setXLResponse")
  35 +public class SetXLResponse {
  36 +
  37 + @XmlElementRef(name = "return", namespace = "http://services.geotool.com", type = JAXBElement.class)
  38 + protected JAXBElement<String> _return;
  39 +
  40 + /**
  41 + * Gets the value of the return property.
  42 + *
  43 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  44 + *
  45 + */
  46 + public JAXBElement<String> getReturn() {
  47 + return _return;
  48 + }
  49 +
  50 + /**
  51 + * Sets the value of the return property.
  52 + *
  53 + * @param value
  54 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  55 + *
  56 + */
  57 + public void setReturn(JAXBElement<String> value) {
  58 + this._return = ((JAXBElement<String>) value);
  59 + }
  60 +
  61 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/ZBUploadLineStation.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;args0&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;/sequence&gt;
  25 + * &lt;/restriction&gt;
  26 + * &lt;/complexContent&gt;
  27 + * &lt;/complexType&gt;
  28 + * </pre>
  29 + *
  30 + *
  31 + */
  32 +@XmlAccessorType(XmlAccessType.FIELD)
  33 +@XmlType(name = "", propOrder = { "args0" })
  34 +@XmlRootElement(name = "ZBUploadLineStation")
  35 +public class ZBUploadLineStation {
  36 +
  37 + @XmlElementRef(name = "args0", namespace = "http://services.geotool.com", type = JAXBElement.class)
  38 + protected JAXBElement<String> args0;
  39 +
  40 + /**
  41 + * Gets the value of the args0 property.
  42 + *
  43 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  44 + *
  45 + */
  46 + public JAXBElement<String> getArgs0() {
  47 + return args0;
  48 + }
  49 +
  50 + /**
  51 + * Sets the value of the args0 property.
  52 + *
  53 + * @param value
  54 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  55 + *
  56 + */
  57 + public void setArgs0(JAXBElement<String> value) {
  58 + this.args0 = ((JAXBElement<String>) value);
  59 + }
  60 +
  61 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/ZBUploadLineStationResponse.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.geotool.services;
  2 +
  3 +import javax.xml.bind.JAXBElement;
  4 +import javax.xml.bind.annotation.XmlAccessType;
  5 +import javax.xml.bind.annotation.XmlAccessorType;
  6 +import javax.xml.bind.annotation.XmlElementRef;
  7 +import javax.xml.bind.annotation.XmlRootElement;
  8 +import javax.xml.bind.annotation.XmlType;
  9 +
  10 +/**
  11 + * <p>
  12 + * Java class for anonymous complex type.
  13 + *
  14 + * <p>
  15 + * The following schema fragment specifies the expected content contained within
  16 + * this class.
  17 + *
  18 + * <pre>
  19 + * &lt;complexType&gt;
  20 + * &lt;complexContent&gt;
  21 + * &lt;restriction base=&quot;{http://www.w3.org/2001/XMLSchema}anyType&quot;&gt;
  22 + * &lt;sequence&gt;
  23 + * &lt;element name=&quot;return&quot; type=&quot;{http://www.w3.org/2001/XMLSchema}string&quot; minOccurs=&quot;0&quot;/&gt;
  24 + * &lt;/sequence&gt;
  25 + * &lt;/restriction&gt;
  26 + * &lt;/complexContent&gt;
  27 + * &lt;/complexType&gt;
  28 + * </pre>
  29 + *
  30 + *
  31 + */
  32 +@XmlAccessorType(XmlAccessType.FIELD)
  33 +@XmlType(name = "", propOrder = { "_return" })
  34 +@XmlRootElement(name = "ZBUploadLineStationResponse")
  35 +public class ZBUploadLineStationResponse {
  36 +
  37 + @XmlElementRef(name = "return", namespace = "http://services.geotool.com", type = JAXBElement.class)
  38 + protected JAXBElement<String> _return;
  39 +
  40 + /**
  41 + * Gets the value of the return property.
  42 + *
  43 + * @return possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
  44 + *
  45 + */
  46 + public JAXBElement<String> getReturn() {
  47 + return _return;
  48 + }
  49 +
  50 + /**
  51 + * Sets the value of the return property.
  52 + *
  53 + * @param value
  54 + * allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
  55 + *
  56 + */
  57 + public void setReturn(JAXBElement<String> value) {
  58 + this._return = ((JAXBElement<String>) value);
  59 + }
  60 +
  61 +}
... ...
src/main/java/com/bsth/webService/trafficManage/geotool/services/package-info.java 0 → 100644
  1 +/**
  2 + * Internal
  3 + *
  4 + */
  5 +@javax.xml.bind.annotation.XmlSchema(namespace = "http://services.geotool.com", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
  6 +package com.bsth.webService.trafficManage.geotool.services;
  7 +
... ...
src/main/java/com/bsth/webService/trafficManage/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.org.tempuri;
  9 +
  10 +public class Results implements java.io.Serializable {
  11 + private boolean success;
  12 +
  13 + private java.lang.String message;
  14 +
  15 + public Results() {
  16 + }
  17 +
  18 + public Results(
  19 + boolean success,
  20 + java.lang.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 java.lang.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(java.lang.String message) {
  62 + this.message = message;
  63 + }
  64 +
  65 + private java.lang.Object __equalsCalc = null;
  66 + public synchronized boolean equals(java.lang.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 + java.lang.String mechType,
  133 + java.lang.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 + java.lang.String mechType,
  145 + java.lang.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/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.org.tempuri;
  9 +
  10 +public interface WebService extends javax.xml.rpc.Service {
  11 + public java.lang.String getWebServiceSoapAddress();
  12 +
  13 + public com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap getWebServiceSoap() throws javax.xml.rpc.ServiceException;
  14 +
  15 + public com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException;
  16 +}
... ...
src/main/java/com/bsth/webService/trafficManage/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.org.tempuri;
  9 +
  10 +public class WebServiceLocator extends org.apache.axis.client.Service implements com.bsth.webService.trafficManage.org.tempuri.WebService {
  11 +
  12 + public WebServiceLocator() {
  13 + }
  14 +
  15 +
  16 + public WebServiceLocator(org.apache.axis.EngineConfiguration config) {
  17 + super(config);
  18 + }
  19 +
  20 + public WebServiceLocator(java.lang.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 java.lang.String WebServiceSoap_address = "http://218.242.195.76:8411/webservice.asmx";
  26 +
  27 + public java.lang.String getWebServiceSoapAddress() {
  28 + return WebServiceSoap_address;
  29 + }
  30 +
  31 + // The WSDD service name defaults to the port name.
  32 + private java.lang.String WebServiceSoapWSDDServiceName = "WebServiceSoap";
  33 +
  34 + public java.lang.String getWebServiceSoapWSDDServiceName() {
  35 + return WebServiceSoapWSDDServiceName;
  36 + }
  37 +
  38 + public void setWebServiceSoapWSDDServiceName(java.lang.String name) {
  39 + WebServiceSoapWSDDServiceName = name;
  40 + }
  41 +
  42 + public com.bsth.webService.trafficManage.org.tempuri.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 com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap getWebServiceSoap(java.net.URL portAddress) throws javax.xml.rpc.ServiceException {
  54 + try {
  55 + com.bsth.webService.trafficManage.org.tempuri.WebServiceSoapStub _stub = new com.bsth.webService.trafficManage.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(java.lang.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.org.tempuri.WebServiceSoap.class.isAssignableFrom(serviceEndpointInterface)) {
  76 + com.bsth.webService.trafficManage.org.tempuri.WebServiceSoapStub _stub = new com.bsth.webService.trafficManage.org.tempuri.WebServiceSoapStub(new java.net.URL(WebServiceSoap_address), this);
  77 + _stub.setPortName(getWebServiceSoapWSDDServiceName());
  78 + return _stub;
  79 + }
  80 + }
  81 + catch (java.lang.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 + java.lang.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(java.lang.String portName, java.lang.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, java.lang.String address) throws javax.xml.rpc.ServiceException {
  139 + setEndpointAddress(portName.getLocalPart(), address);
  140 + }
  141 +
  142 +}
... ...
src/main/java/com/bsth/webService/trafficManage/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.org.tempuri;
  9 +
  10 +public interface WebServiceSoap extends java.rmi.Remote {
  11 + public com.bsth.webService.trafficManage.org.tempuri.Results setCL(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  12 + public com.bsth.webService.trafficManage.org.tempuri.Results setLD(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  13 + public com.bsth.webService.trafficManage.org.tempuri.Results setDDRB(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  14 + public com.bsth.webService.trafficManage.org.tempuri.Results setJHBC(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  15 + public com.bsth.webService.trafficManage.org.tempuri.Results setSKB(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  16 + public com.bsth.webService.trafficManage.org.tempuri.Results setSJ(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  17 + public com.bsth.webService.trafficManage.org.tempuri.Results setLCYH(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  18 + public com.bsth.webService.trafficManage.org.tempuri.Results setXLPC(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  19 + public com.bsth.webService.trafficManage.org.tempuri.Results setCS(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  20 + public com.bsth.webService.trafficManage.org.tempuri.Results setFZCKGM(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  21 + public com.bsth.webService.trafficManage.org.tempuri.Results setJJZD(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException;
  22 +}
... ...
src/main/java/com/bsth/webService/trafficManage/org/tempuri/WebServiceSoapProxy.java 0 → 100644
  1 +package com.bsth.webService.trafficManage.org.tempuri;
  2 +
  3 +public class WebServiceSoapProxy implements com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap {
  4 + private String _endpoint = null;
  5 + private com.bsth.webService.trafficManage.org.tempuri.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 com.bsth.webService.trafficManage.org.tempuri.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 com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap getWebServiceSoap() {
  42 + if (webServiceSoap == null)
  43 + _initWebServiceSoapProxy();
  44 + return webServiceSoap;
  45 + }
  46 +
  47 + public com.bsth.webService.trafficManage.org.tempuri.Results setCL(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  48 + if (webServiceSoap == null)
  49 + _initWebServiceSoapProxy();
  50 + return webServiceSoap.setCL(uName, uPass, sXml);
  51 + }
  52 +
  53 + public com.bsth.webService.trafficManage.org.tempuri.Results setLD(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  54 + if (webServiceSoap == null)
  55 + _initWebServiceSoapProxy();
  56 + return webServiceSoap.setLD(uName, uPass, sXml);
  57 + }
  58 +
  59 + public com.bsth.webService.trafficManage.org.tempuri.Results setDDRB(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  60 + if (webServiceSoap == null)
  61 + _initWebServiceSoapProxy();
  62 + return webServiceSoap.setDDRB(uName, uPass, sXml);
  63 + }
  64 +
  65 + public com.bsth.webService.trafficManage.org.tempuri.Results setJHBC(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  66 + if (webServiceSoap == null)
  67 + _initWebServiceSoapProxy();
  68 + return webServiceSoap.setJHBC(uName, uPass, sXml);
  69 + }
  70 +
  71 + public com.bsth.webService.trafficManage.org.tempuri.Results setSKB(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  72 + if (webServiceSoap == null)
  73 + _initWebServiceSoapProxy();
  74 + return webServiceSoap.setSKB(uName, uPass, sXml);
  75 + }
  76 +
  77 + public com.bsth.webService.trafficManage.org.tempuri.Results setSJ(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  78 + if (webServiceSoap == null)
  79 + _initWebServiceSoapProxy();
  80 + return webServiceSoap.setSJ(uName, uPass, sXml);
  81 + }
  82 +
  83 + public com.bsth.webService.trafficManage.org.tempuri.Results setLCYH(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  84 + if (webServiceSoap == null)
  85 + _initWebServiceSoapProxy();
  86 + return webServiceSoap.setLCYH(uName, uPass, sXml);
  87 + }
  88 +
  89 + public com.bsth.webService.trafficManage.org.tempuri.Results setXLPC(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  90 + if (webServiceSoap == null)
  91 + _initWebServiceSoapProxy();
  92 + return webServiceSoap.setXLPC(uName, uPass, sXml);
  93 + }
  94 +
  95 + public com.bsth.webService.trafficManage.org.tempuri.Results setCS(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  96 + if (webServiceSoap == null)
  97 + _initWebServiceSoapProxy();
  98 + return webServiceSoap.setCS(uName, uPass, sXml);
  99 + }
  100 +
  101 + public com.bsth.webService.trafficManage.org.tempuri.Results setFZCKGM(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  102 + if (webServiceSoap == null)
  103 + _initWebServiceSoapProxy();
  104 + return webServiceSoap.setFZCKGM(uName, uPass, sXml);
  105 + }
  106 +
  107 + public com.bsth.webService.trafficManage.org.tempuri.Results setJJZD(java.lang.String uName, java.lang.String uPass, java.lang.String sXml) throws java.rmi.RemoteException{
  108 + if (webServiceSoap == null)
  109 + _initWebServiceSoapProxy();
  110 + return webServiceSoap.setJJZD(uName, uPass, sXml);
  111 + }
  112 +
  113 +
  114 +}
0 115 \ No newline at end of file
... ...
src/main/java/com/bsth/webService/trafficManage/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.org.tempuri;
  9 +
  10 +public class WebServiceSoapStub extends org.apache.axis.client.Stub implements
  11 + com.bsth.webService.trafficManage.org.tempuri.WebServiceSoap {
  12 + private java.util.Vector cachedSerClasses = new java.util.Vector();
  13 + private java.util.Vector cachedSerQNames = new java.util.Vector();
  14 + private java.util.Vector cachedSerFactories = new java.util.Vector();
  15 + private java.util.Vector cachedDeserFactories = new java.util.Vector();
  16 +
  17 + static org.apache.axis.description.OperationDesc[] _operations;
  18 +
  19 + static {
  20 + _operations = new org.apache.axis.description.OperationDesc[11];
  21 + _initOperationDesc1();
  22 + _initOperationDesc2();
  23 + }
  24 +
  25 + private static void _initOperationDesc1() {
  26 + org.apache.axis.description.OperationDesc oper;
  27 + org.apache.axis.description.ParameterDesc param;
  28 + oper = new org.apache.axis.description.OperationDesc();
  29 + oper.setName("setCL");
  30 + param = new org.apache.axis.description.ParameterDesc(
  31 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  32 + org.apache.axis.description.ParameterDesc.IN,
  33 + new javax.xml.namespace.QName(
  34 + "http://www.w3.org/2001/XMLSchema", "string"),
  35 + java.lang.String.class, false, false);
  36 + param.setOmittable(true);
  37 + oper.addParameter(param);
  38 + param = new org.apache.axis.description.ParameterDesc(
  39 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  40 + org.apache.axis.description.ParameterDesc.IN,
  41 + new javax.xml.namespace.QName(
  42 + "http://www.w3.org/2001/XMLSchema", "string"),
  43 + java.lang.String.class, false, false);
  44 + param.setOmittable(true);
  45 + oper.addParameter(param);
  46 + param = new org.apache.axis.description.ParameterDesc(
  47 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  48 + org.apache.axis.description.ParameterDesc.IN,
  49 + new javax.xml.namespace.QName(
  50 + "http://www.w3.org/2001/XMLSchema", "string"),
  51 + java.lang.String.class, false, false);
  52 + param.setOmittable(true);
  53 + oper.addParameter(param);
  54 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  55 + "Results"));
  56 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  57 + oper.setReturnQName(new javax.xml.namespace.QName(
  58 + "http://tempuri.org/", "setCLResult"));
  59 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  60 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  61 + _operations[0] = oper;
  62 +
  63 + oper = new org.apache.axis.description.OperationDesc();
  64 + oper.setName("setLD");
  65 + param = new org.apache.axis.description.ParameterDesc(
  66 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  67 + org.apache.axis.description.ParameterDesc.IN,
  68 + new javax.xml.namespace.QName(
  69 + "http://www.w3.org/2001/XMLSchema", "string"),
  70 + java.lang.String.class, false, false);
  71 + param.setOmittable(true);
  72 + oper.addParameter(param);
  73 + param = new org.apache.axis.description.ParameterDesc(
  74 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  75 + org.apache.axis.description.ParameterDesc.IN,
  76 + new javax.xml.namespace.QName(
  77 + "http://www.w3.org/2001/XMLSchema", "string"),
  78 + java.lang.String.class, false, false);
  79 + param.setOmittable(true);
  80 + oper.addParameter(param);
  81 + param = new org.apache.axis.description.ParameterDesc(
  82 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  83 + org.apache.axis.description.ParameterDesc.IN,
  84 + new javax.xml.namespace.QName(
  85 + "http://www.w3.org/2001/XMLSchema", "string"),
  86 + java.lang.String.class, false, false);
  87 + param.setOmittable(true);
  88 + oper.addParameter(param);
  89 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  90 + "Results"));
  91 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  92 + oper.setReturnQName(new javax.xml.namespace.QName(
  93 + "http://tempuri.org/", "setLDResult"));
  94 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  95 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  96 + _operations[1] = oper;
  97 +
  98 + oper = new org.apache.axis.description.OperationDesc();
  99 + oper.setName("setDDRB");
  100 + param = new org.apache.axis.description.ParameterDesc(
  101 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  102 + org.apache.axis.description.ParameterDesc.IN,
  103 + new javax.xml.namespace.QName(
  104 + "http://www.w3.org/2001/XMLSchema", "string"),
  105 + java.lang.String.class, false, false);
  106 + param.setOmittable(true);
  107 + oper.addParameter(param);
  108 + param = new org.apache.axis.description.ParameterDesc(
  109 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  110 + org.apache.axis.description.ParameterDesc.IN,
  111 + new javax.xml.namespace.QName(
  112 + "http://www.w3.org/2001/XMLSchema", "string"),
  113 + java.lang.String.class, false, false);
  114 + param.setOmittable(true);
  115 + oper.addParameter(param);
  116 + param = new org.apache.axis.description.ParameterDesc(
  117 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  118 + org.apache.axis.description.ParameterDesc.IN,
  119 + new javax.xml.namespace.QName(
  120 + "http://www.w3.org/2001/XMLSchema", "string"),
  121 + java.lang.String.class, false, false);
  122 + param.setOmittable(true);
  123 + oper.addParameter(param);
  124 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  125 + "Results"));
  126 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  127 + oper.setReturnQName(new javax.xml.namespace.QName(
  128 + "http://tempuri.org/", "setDDRBResult"));
  129 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  130 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  131 + _operations[2] = oper;
  132 +
  133 + oper = new org.apache.axis.description.OperationDesc();
  134 + oper.setName("setJHBC");
  135 + param = new org.apache.axis.description.ParameterDesc(
  136 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  137 + org.apache.axis.description.ParameterDesc.IN,
  138 + new javax.xml.namespace.QName(
  139 + "http://www.w3.org/2001/XMLSchema", "string"),
  140 + java.lang.String.class, false, false);
  141 + param.setOmittable(true);
  142 + oper.addParameter(param);
  143 + param = new org.apache.axis.description.ParameterDesc(
  144 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  145 + org.apache.axis.description.ParameterDesc.IN,
  146 + new javax.xml.namespace.QName(
  147 + "http://www.w3.org/2001/XMLSchema", "string"),
  148 + java.lang.String.class, false, false);
  149 + param.setOmittable(true);
  150 + oper.addParameter(param);
  151 + param = new org.apache.axis.description.ParameterDesc(
  152 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  153 + org.apache.axis.description.ParameterDesc.IN,
  154 + new javax.xml.namespace.QName(
  155 + "http://www.w3.org/2001/XMLSchema", "string"),
  156 + java.lang.String.class, false, false);
  157 + param.setOmittable(true);
  158 + oper.addParameter(param);
  159 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  160 + "Results"));
  161 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  162 + oper.setReturnQName(new javax.xml.namespace.QName(
  163 + "http://tempuri.org/", "setJHBCResult"));
  164 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  165 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  166 + _operations[3] = oper;
  167 +
  168 + oper = new org.apache.axis.description.OperationDesc();
  169 + oper.setName("setSKB");
  170 + param = new org.apache.axis.description.ParameterDesc(
  171 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  172 + org.apache.axis.description.ParameterDesc.IN,
  173 + new javax.xml.namespace.QName(
  174 + "http://www.w3.org/2001/XMLSchema", "string"),
  175 + java.lang.String.class, false, false);
  176 + param.setOmittable(true);
  177 + oper.addParameter(param);
  178 + param = new org.apache.axis.description.ParameterDesc(
  179 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  180 + org.apache.axis.description.ParameterDesc.IN,
  181 + new javax.xml.namespace.QName(
  182 + "http://www.w3.org/2001/XMLSchema", "string"),
  183 + java.lang.String.class, false, false);
  184 + param.setOmittable(true);
  185 + oper.addParameter(param);
  186 + param = new org.apache.axis.description.ParameterDesc(
  187 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  188 + org.apache.axis.description.ParameterDesc.IN,
  189 + new javax.xml.namespace.QName(
  190 + "http://www.w3.org/2001/XMLSchema", "string"),
  191 + java.lang.String.class, false, false);
  192 + param.setOmittable(true);
  193 + oper.addParameter(param);
  194 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  195 + "Results"));
  196 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  197 + oper.setReturnQName(new javax.xml.namespace.QName(
  198 + "http://tempuri.org/", "setSKBResult"));
  199 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  200 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  201 + _operations[4] = oper;
  202 +
  203 + oper = new org.apache.axis.description.OperationDesc();
  204 + oper.setName("setSJ");
  205 + param = new org.apache.axis.description.ParameterDesc(
  206 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  207 + org.apache.axis.description.ParameterDesc.IN,
  208 + new javax.xml.namespace.QName(
  209 + "http://www.w3.org/2001/XMLSchema", "string"),
  210 + java.lang.String.class, false, false);
  211 + param.setOmittable(true);
  212 + oper.addParameter(param);
  213 + param = new org.apache.axis.description.ParameterDesc(
  214 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  215 + org.apache.axis.description.ParameterDesc.IN,
  216 + new javax.xml.namespace.QName(
  217 + "http://www.w3.org/2001/XMLSchema", "string"),
  218 + java.lang.String.class, false, false);
  219 + param.setOmittable(true);
  220 + oper.addParameter(param);
  221 + param = new org.apache.axis.description.ParameterDesc(
  222 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  223 + org.apache.axis.description.ParameterDesc.IN,
  224 + new javax.xml.namespace.QName(
  225 + "http://www.w3.org/2001/XMLSchema", "string"),
  226 + java.lang.String.class, false, false);
  227 + param.setOmittable(true);
  228 + oper.addParameter(param);
  229 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  230 + "Results"));
  231 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  232 + oper.setReturnQName(new javax.xml.namespace.QName(
  233 + "http://tempuri.org/", "setSJResult"));
  234 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  235 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  236 + _operations[5] = oper;
  237 +
  238 + oper = new org.apache.axis.description.OperationDesc();
  239 + oper.setName("setLCYH");
  240 + param = new org.apache.axis.description.ParameterDesc(
  241 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  242 + org.apache.axis.description.ParameterDesc.IN,
  243 + new javax.xml.namespace.QName(
  244 + "http://www.w3.org/2001/XMLSchema", "string"),
  245 + java.lang.String.class, false, false);
  246 + param.setOmittable(true);
  247 + oper.addParameter(param);
  248 + param = new org.apache.axis.description.ParameterDesc(
  249 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  250 + org.apache.axis.description.ParameterDesc.IN,
  251 + new javax.xml.namespace.QName(
  252 + "http://www.w3.org/2001/XMLSchema", "string"),
  253 + java.lang.String.class, false, false);
  254 + param.setOmittable(true);
  255 + oper.addParameter(param);
  256 + param = new org.apache.axis.description.ParameterDesc(
  257 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  258 + org.apache.axis.description.ParameterDesc.IN,
  259 + new javax.xml.namespace.QName(
  260 + "http://www.w3.org/2001/XMLSchema", "string"),
  261 + java.lang.String.class, false, false);
  262 + param.setOmittable(true);
  263 + oper.addParameter(param);
  264 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  265 + "Results"));
  266 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  267 + oper.setReturnQName(new javax.xml.namespace.QName(
  268 + "http://tempuri.org/", "setLCYHResult"));
  269 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  270 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  271 + _operations[6] = oper;
  272 +
  273 + oper = new org.apache.axis.description.OperationDesc();
  274 + oper.setName("setXLPC");
  275 + param = new org.apache.axis.description.ParameterDesc(
  276 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  277 + org.apache.axis.description.ParameterDesc.IN,
  278 + new javax.xml.namespace.QName(
  279 + "http://www.w3.org/2001/XMLSchema", "string"),
  280 + java.lang.String.class, false, false);
  281 + param.setOmittable(true);
  282 + oper.addParameter(param);
  283 + param = new org.apache.axis.description.ParameterDesc(
  284 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  285 + org.apache.axis.description.ParameterDesc.IN,
  286 + new javax.xml.namespace.QName(
  287 + "http://www.w3.org/2001/XMLSchema", "string"),
  288 + java.lang.String.class, false, false);
  289 + param.setOmittable(true);
  290 + oper.addParameter(param);
  291 + param = new org.apache.axis.description.ParameterDesc(
  292 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  293 + org.apache.axis.description.ParameterDesc.IN,
  294 + new javax.xml.namespace.QName(
  295 + "http://www.w3.org/2001/XMLSchema", "string"),
  296 + java.lang.String.class, false, false);
  297 + param.setOmittable(true);
  298 + oper.addParameter(param);
  299 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  300 + "Results"));
  301 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  302 + oper.setReturnQName(new javax.xml.namespace.QName(
  303 + "http://tempuri.org/", "setXLPCResult"));
  304 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  305 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  306 + _operations[7] = oper;
  307 +
  308 + oper = new org.apache.axis.description.OperationDesc();
  309 + oper.setName("setCS");
  310 + param = new org.apache.axis.description.ParameterDesc(
  311 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  312 + org.apache.axis.description.ParameterDesc.IN,
  313 + new javax.xml.namespace.QName(
  314 + "http://www.w3.org/2001/XMLSchema", "string"),
  315 + java.lang.String.class, false, false);
  316 + param.setOmittable(true);
  317 + oper.addParameter(param);
  318 + param = new org.apache.axis.description.ParameterDesc(
  319 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  320 + org.apache.axis.description.ParameterDesc.IN,
  321 + new javax.xml.namespace.QName(
  322 + "http://www.w3.org/2001/XMLSchema", "string"),
  323 + java.lang.String.class, false, false);
  324 + param.setOmittable(true);
  325 + oper.addParameter(param);
  326 + param = new org.apache.axis.description.ParameterDesc(
  327 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  328 + org.apache.axis.description.ParameterDesc.IN,
  329 + new javax.xml.namespace.QName(
  330 + "http://www.w3.org/2001/XMLSchema", "string"),
  331 + java.lang.String.class, false, false);
  332 + param.setOmittable(true);
  333 + oper.addParameter(param);
  334 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  335 + "Results"));
  336 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  337 + oper.setReturnQName(new javax.xml.namespace.QName(
  338 + "http://tempuri.org/", "setCSResult"));
  339 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  340 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  341 + _operations[8] = oper;
  342 +
  343 + oper = new org.apache.axis.description.OperationDesc();
  344 + oper.setName("setFZCKGM");
  345 + param = new org.apache.axis.description.ParameterDesc(
  346 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  347 + org.apache.axis.description.ParameterDesc.IN,
  348 + new javax.xml.namespace.QName(
  349 + "http://www.w3.org/2001/XMLSchema", "string"),
  350 + java.lang.String.class, false, false);
  351 + param.setOmittable(true);
  352 + oper.addParameter(param);
  353 + param = new org.apache.axis.description.ParameterDesc(
  354 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  355 + org.apache.axis.description.ParameterDesc.IN,
  356 + new javax.xml.namespace.QName(
  357 + "http://www.w3.org/2001/XMLSchema", "string"),
  358 + java.lang.String.class, false, false);
  359 + param.setOmittable(true);
  360 + oper.addParameter(param);
  361 + param = new org.apache.axis.description.ParameterDesc(
  362 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  363 + org.apache.axis.description.ParameterDesc.IN,
  364 + new javax.xml.namespace.QName(
  365 + "http://www.w3.org/2001/XMLSchema", "string"),
  366 + java.lang.String.class, false, false);
  367 + param.setOmittable(true);
  368 + oper.addParameter(param);
  369 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  370 + "Results"));
  371 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  372 + oper.setReturnQName(new javax.xml.namespace.QName(
  373 + "http://tempuri.org/", "setFZCKGMResult"));
  374 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  375 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  376 + _operations[9] = oper;
  377 +
  378 + }
  379 +
  380 + private static void _initOperationDesc2() {
  381 + org.apache.axis.description.OperationDesc oper;
  382 + org.apache.axis.description.ParameterDesc param;
  383 + oper = new org.apache.axis.description.OperationDesc();
  384 + oper.setName("setJJZD");
  385 + param = new org.apache.axis.description.ParameterDesc(
  386 + new javax.xml.namespace.QName("http://tempuri.org/", "uName"),
  387 + org.apache.axis.description.ParameterDesc.IN,
  388 + new javax.xml.namespace.QName(
  389 + "http://www.w3.org/2001/XMLSchema", "string"),
  390 + java.lang.String.class, false, false);
  391 + param.setOmittable(true);
  392 + oper.addParameter(param);
  393 + param = new org.apache.axis.description.ParameterDesc(
  394 + new javax.xml.namespace.QName("http://tempuri.org/", "uPass"),
  395 + org.apache.axis.description.ParameterDesc.IN,
  396 + new javax.xml.namespace.QName(
  397 + "http://www.w3.org/2001/XMLSchema", "string"),
  398 + java.lang.String.class, false, false);
  399 + param.setOmittable(true);
  400 + oper.addParameter(param);
  401 + param = new org.apache.axis.description.ParameterDesc(
  402 + new javax.xml.namespace.QName("http://tempuri.org/", "sXml"),
  403 + org.apache.axis.description.ParameterDesc.IN,
  404 + new javax.xml.namespace.QName(
  405 + "http://www.w3.org/2001/XMLSchema", "string"),
  406 + java.lang.String.class, false, false);
  407 + param.setOmittable(true);
  408 + oper.addParameter(param);
  409 + oper.setReturnType(new javax.xml.namespace.QName("http://tempuri.org/",
  410 + "Results"));
  411 + oper.setReturnClass(com.bsth.webService.trafficManage.org.tempuri.Results.class);
  412 + oper.setReturnQName(new javax.xml.namespace.QName(
  413 + "http://tempuri.org/", "setJJZDResult"));
  414 + oper.setStyle(org.apache.axis.constants.Style.WRAPPED);
  415 + oper.setUse(org.apache.axis.constants.Use.LITERAL);
  416 + _operations[10] = oper;
  417 +
  418 + }
  419 +
  420 + public WebServiceSoapStub() throws org.apache.axis.AxisFault {
  421 + this(null);
  422 + }
  423 +
  424 + public WebServiceSoapStub(java.net.URL endpointURL,
  425 + javax.xml.rpc.Service service) throws org.apache.axis.AxisFault {
  426 + this(service);
  427 + super.cachedEndpoint = endpointURL;
  428 + }
  429 +
  430 + public WebServiceSoapStub(javax.xml.rpc.Service service)
  431 + throws org.apache.axis.AxisFault {
  432 + if (service == null) {
  433 + super.service = new org.apache.axis.client.Service();
  434 + } else {
  435 + super.service = service;
  436 + }
  437 + ((org.apache.axis.client.Service) super.service)
  438 + .setTypeMappingVersion("1.2");
  439 + java.lang.Class cls;
  440 + javax.xml.namespace.QName qName;
  441 + javax.xml.namespace.QName qName2;
  442 + java.lang.Class beansf = org.apache.axis.encoding.ser.BeanSerializerFactory.class;
  443 + java.lang.Class beandf = org.apache.axis.encoding.ser.BeanDeserializerFactory.class;
  444 + java.lang.Class enumsf = org.apache.axis.encoding.ser.EnumSerializerFactory.class;
  445 + java.lang.Class enumdf = org.apache.axis.encoding.ser.EnumDeserializerFactory.class;
  446 + java.lang.Class arraysf = org.apache.axis.encoding.ser.ArraySerializerFactory.class;
  447 + java.lang.Class arraydf = org.apache.axis.encoding.ser.ArrayDeserializerFactory.class;
  448 + java.lang.Class simplesf = org.apache.axis.encoding.ser.SimpleSerializerFactory.class;
  449 + java.lang.Class simpledf = org.apache.axis.encoding.ser.SimpleDeserializerFactory.class;
  450 + java.lang.Class simplelistsf = org.apache.axis.encoding.ser.SimpleListSerializerFactory.class;
  451 + java.lang.Class simplelistdf = org.apache.axis.encoding.ser.SimpleListDeserializerFactory.class;
  452 + qName = new javax.xml.namespace.QName("http://tempuri.org/", "Results");
  453 + cachedSerQNames.add(qName);
  454 + cls = com.bsth.webService.trafficManage.org.tempuri.Results.class;
  455 + cachedSerClasses.add(cls);
  456 + cachedSerFactories.add(beansf);
  457 + cachedDeserFactories.add(beandf);
  458 +
  459 + }
  460 +
  461 + protected org.apache.axis.client.Call createCall()
  462 + throws java.rmi.RemoteException {
  463 + try {
  464 + org.apache.axis.client.Call _call = super._createCall();
  465 + if (super.maintainSessionSet) {
  466 + _call.setMaintainSession(super.maintainSession);
  467 + }
  468 + if (super.cachedUsername != null) {
  469 + _call.setUsername(super.cachedUsername);
  470 + }
  471 + if (super.cachedPassword != null) {
  472 + _call.setPassword(super.cachedPassword);
  473 + }
  474 + if (super.cachedEndpoint != null) {
  475 + _call.setTargetEndpointAddress(super.cachedEndpoint);
  476 + }
  477 + if (super.cachedTimeout != null) {
  478 + _call.setTimeout(super.cachedTimeout);
  479 + }
  480 + if (super.cachedPortName != null) {
  481 + _call.setPortName(super.cachedPortName);
  482 + }
  483 + java.util.Enumeration keys = super.cachedProperties.keys();
  484 + while (keys.hasMoreElements()) {
  485 + java.lang.String key = (java.lang.String) keys.nextElement();
  486 + _call.setProperty(key, super.cachedProperties.get(key));
  487 + }
  488 + // All the type mapping information is registered
  489 + // when the first call is made.
  490 + // The type mapping information is actually registered in
  491 + // the TypeMappingRegistry of the service, which
  492 + // is the reason why registration is only needed for the first call.
  493 + synchronized (this) {
  494 + if (firstCall()) {
  495 + // must set encoding style before registering serializers
  496 + _call.setEncodingStyle(null);
  497 + for (int i = 0; i < cachedSerFactories.size(); ++i) {
  498 + java.lang.Class cls = (java.lang.Class) cachedSerClasses
  499 + .get(i);
  500 + javax.xml.namespace.QName qName = (javax.xml.namespace.QName) cachedSerQNames
  501 + .get(i);
  502 + java.lang.Object x = cachedSerFactories.get(i);
  503 + if (x instanceof Class) {
  504 + java.lang.Class sf = (java.lang.Class) cachedSerFactories
  505 + .get(i);
  506 + java.lang.Class df = (java.lang.Class) cachedDeserFactories
  507 + .get(i);
  508 + _call.registerTypeMapping(cls, qName, sf, df, false);
  509 + } else if (x instanceof javax.xml.rpc.encoding.SerializerFactory) {
  510 + org.apache.axis.encoding.SerializerFactory sf = (org.apache.axis.encoding.SerializerFactory) cachedSerFactories
  511 + .get(i);
  512 + org.apache.axis.encoding.DeserializerFactory df = (org.apache.axis.encoding.DeserializerFactory) cachedDeserFactories
  513 + .get(i);
  514 + _call.registerTypeMapping(cls, qName, sf, df, false);
  515 + }
  516 + }
  517 + }
  518 + }
  519 + return _call;
  520 + } catch (java.lang.Throwable _t) {
  521 + throw new org.apache.axis.AxisFault(
  522 + "Failure trying to get the Call object", _t);
  523 + }
  524 + }
  525 +
  526 + public com.bsth.webService.trafficManage.org.tempuri.Results setCL(
  527 + java.lang.String uName, java.lang.String uPass,
  528 + java.lang.String sXml) throws java.rmi.RemoteException {
  529 + if (super.cachedEndpoint == null) {
  530 + throw new org.apache.axis.NoEndPointException();
  531 + }
  532 + org.apache.axis.client.Call _call = createCall();
  533 + _call.setOperation(_operations[0]);
  534 + _call.setUseSOAPAction(true);
  535 + _call.setSOAPActionURI("http://tempuri.org/setCL");
  536 + _call.setEncodingStyle(null);
  537 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  538 + Boolean.FALSE);
  539 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  540 + Boolean.FALSE);
  541 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  542 + _call.setOperationName(new javax.xml.namespace.QName(
  543 + "http://tempuri.org/", "setCL"));
  544 +
  545 + setRequestHeaders(_call);
  546 + setAttachments(_call);
  547 + try {
  548 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  549 + uName, uPass, sXml });
  550 +
  551 + if (_resp instanceof java.rmi.RemoteException) {
  552 + throw (java.rmi.RemoteException) _resp;
  553 + } else {
  554 + extractAttachments(_call);
  555 + try {
  556 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  557 + } catch (java.lang.Exception _exception) {
  558 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  559 + .convert(
  560 + _resp,
  561 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  562 + }
  563 + }
  564 + } catch (org.apache.axis.AxisFault axisFaultException) {
  565 + throw axisFaultException;
  566 + }
  567 + }
  568 +
  569 + public com.bsth.webService.trafficManage.org.tempuri.Results setLD(
  570 + java.lang.String uName, java.lang.String uPass,
  571 + java.lang.String sXml) throws java.rmi.RemoteException {
  572 + if (super.cachedEndpoint == null) {
  573 + throw new org.apache.axis.NoEndPointException();
  574 + }
  575 + org.apache.axis.client.Call _call = createCall();
  576 + _call.setOperation(_operations[1]);
  577 + _call.setUseSOAPAction(true);
  578 + _call.setSOAPActionURI("http://tempuri.org/setLD");
  579 + _call.setEncodingStyle(null);
  580 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  581 + Boolean.FALSE);
  582 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  583 + Boolean.FALSE);
  584 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  585 + _call.setOperationName(new javax.xml.namespace.QName(
  586 + "http://tempuri.org/", "setLD"));
  587 +
  588 + setRequestHeaders(_call);
  589 + setAttachments(_call);
  590 + try {
  591 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  592 + uName, uPass, sXml });
  593 +
  594 + if (_resp instanceof java.rmi.RemoteException) {
  595 + throw (java.rmi.RemoteException) _resp;
  596 + } else {
  597 + extractAttachments(_call);
  598 + try {
  599 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  600 + } catch (java.lang.Exception _exception) {
  601 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  602 + .convert(
  603 + _resp,
  604 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  605 + }
  606 + }
  607 + } catch (org.apache.axis.AxisFault axisFaultException) {
  608 + throw axisFaultException;
  609 + }
  610 + }
  611 +
  612 + public com.bsth.webService.trafficManage.org.tempuri.Results setDDRB(
  613 + java.lang.String uName, java.lang.String uPass,
  614 + java.lang.String sXml) throws java.rmi.RemoteException {
  615 + if (super.cachedEndpoint == null) {
  616 + throw new org.apache.axis.NoEndPointException();
  617 + }
  618 + org.apache.axis.client.Call _call = createCall();
  619 + _call.setOperation(_operations[2]);
  620 + _call.setUseSOAPAction(true);
  621 + _call.setSOAPActionURI("http://tempuri.org/setDDRB");
  622 + _call.setEncodingStyle(null);
  623 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  624 + Boolean.FALSE);
  625 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  626 + Boolean.FALSE);
  627 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  628 + _call.setOperationName(new javax.xml.namespace.QName(
  629 + "http://tempuri.org/", "setDDRB"));
  630 +
  631 + setRequestHeaders(_call);
  632 + setAttachments(_call);
  633 + try {
  634 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  635 + uName, uPass, sXml });
  636 +
  637 + if (_resp instanceof java.rmi.RemoteException) {
  638 + throw (java.rmi.RemoteException) _resp;
  639 + } else {
  640 + extractAttachments(_call);
  641 + try {
  642 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  643 + } catch (java.lang.Exception _exception) {
  644 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  645 + .convert(
  646 + _resp,
  647 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  648 + }
  649 + }
  650 + } catch (org.apache.axis.AxisFault axisFaultException) {
  651 + throw axisFaultException;
  652 + }
  653 + }
  654 +
  655 + public com.bsth.webService.trafficManage.org.tempuri.Results setJHBC(
  656 + java.lang.String uName, java.lang.String uPass,
  657 + java.lang.String sXml) throws java.rmi.RemoteException {
  658 + if (super.cachedEndpoint == null) {
  659 + throw new org.apache.axis.NoEndPointException();
  660 + }
  661 + org.apache.axis.client.Call _call = createCall();
  662 + _call.setOperation(_operations[3]);
  663 + _call.setUseSOAPAction(true);
  664 + _call.setSOAPActionURI("http://tempuri.org/setJHBC");
  665 + _call.setEncodingStyle(null);
  666 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  667 + Boolean.FALSE);
  668 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  669 + Boolean.FALSE);
  670 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  671 + _call.setOperationName(new javax.xml.namespace.QName(
  672 + "http://tempuri.org/", "setJHBC"));
  673 +
  674 + setRequestHeaders(_call);
  675 + setAttachments(_call);
  676 + try {
  677 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  678 + uName, uPass, sXml });
  679 +
  680 + if (_resp instanceof java.rmi.RemoteException) {
  681 + throw (java.rmi.RemoteException) _resp;
  682 + } else {
  683 + extractAttachments(_call);
  684 + try {
  685 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  686 + } catch (java.lang.Exception _exception) {
  687 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  688 + .convert(
  689 + _resp,
  690 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  691 + }
  692 + }
  693 + } catch (org.apache.axis.AxisFault axisFaultException) {
  694 + throw axisFaultException;
  695 + }
  696 + }
  697 +
  698 + public com.bsth.webService.trafficManage.org.tempuri.Results setSKB(
  699 + java.lang.String uName, java.lang.String uPass,
  700 + java.lang.String sXml) throws java.rmi.RemoteException {
  701 + if (super.cachedEndpoint == null) {
  702 + throw new org.apache.axis.NoEndPointException();
  703 + }
  704 + org.apache.axis.client.Call _call = createCall();
  705 + _call.setOperation(_operations[4]);
  706 + _call.setUseSOAPAction(true);
  707 + _call.setSOAPActionURI("http://tempuri.org/setSKB");
  708 + _call.setEncodingStyle(null);
  709 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  710 + Boolean.FALSE);
  711 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  712 + Boolean.FALSE);
  713 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  714 + _call.setOperationName(new javax.xml.namespace.QName(
  715 + "http://tempuri.org/", "setSKB"));
  716 +
  717 + setRequestHeaders(_call);
  718 + setAttachments(_call);
  719 + try {
  720 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  721 + uName, uPass, sXml });
  722 +
  723 + if (_resp instanceof java.rmi.RemoteException) {
  724 + throw (java.rmi.RemoteException) _resp;
  725 + } else {
  726 + extractAttachments(_call);
  727 + try {
  728 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  729 + } catch (java.lang.Exception _exception) {
  730 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  731 + .convert(
  732 + _resp,
  733 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  734 + }
  735 + }
  736 + } catch (org.apache.axis.AxisFault axisFaultException) {
  737 + throw axisFaultException;
  738 + }
  739 + }
  740 +
  741 + public com.bsth.webService.trafficManage.org.tempuri.Results setSJ(
  742 + java.lang.String uName, java.lang.String uPass,
  743 + java.lang.String sXml) throws java.rmi.RemoteException {
  744 + if (super.cachedEndpoint == null) {
  745 + throw new org.apache.axis.NoEndPointException();
  746 + }
  747 + org.apache.axis.client.Call _call = createCall();
  748 + _call.setOperation(_operations[5]);
  749 + _call.setUseSOAPAction(true);
  750 + _call.setSOAPActionURI("http://tempuri.org/setSJ");
  751 + _call.setEncodingStyle(null);
  752 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  753 + Boolean.FALSE);
  754 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  755 + Boolean.FALSE);
  756 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  757 + _call.setOperationName(new javax.xml.namespace.QName(
  758 + "http://tempuri.org/", "setSJ"));
  759 +
  760 + setRequestHeaders(_call);
  761 + setAttachments(_call);
  762 + try {
  763 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  764 + uName, uPass, sXml });
  765 +
  766 + if (_resp instanceof java.rmi.RemoteException) {
  767 + throw (java.rmi.RemoteException) _resp;
  768 + } else {
  769 + extractAttachments(_call);
  770 + try {
  771 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  772 + } catch (java.lang.Exception _exception) {
  773 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  774 + .convert(
  775 + _resp,
  776 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  777 + }
  778 + }
  779 + } catch (org.apache.axis.AxisFault axisFaultException) {
  780 + throw axisFaultException;
  781 + }
  782 + }
  783 +
  784 + public com.bsth.webService.trafficManage.org.tempuri.Results setLCYH(
  785 + java.lang.String uName, java.lang.String uPass,
  786 + java.lang.String sXml) throws java.rmi.RemoteException {
  787 + if (super.cachedEndpoint == null) {
  788 + throw new org.apache.axis.NoEndPointException();
  789 + }
  790 + org.apache.axis.client.Call _call = createCall();
  791 + _call.setOperation(_operations[6]);
  792 + _call.setUseSOAPAction(true);
  793 + _call.setSOAPActionURI("http://tempuri.org/setLCYH");
  794 + _call.setEncodingStyle(null);
  795 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  796 + Boolean.FALSE);
  797 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  798 + Boolean.FALSE);
  799 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  800 + _call.setOperationName(new javax.xml.namespace.QName(
  801 + "http://tempuri.org/", "setLCYH"));
  802 +
  803 + setRequestHeaders(_call);
  804 + setAttachments(_call);
  805 + try {
  806 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  807 + uName, uPass, sXml });
  808 +
  809 + if (_resp instanceof java.rmi.RemoteException) {
  810 + throw (java.rmi.RemoteException) _resp;
  811 + } else {
  812 + extractAttachments(_call);
  813 + try {
  814 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  815 + } catch (java.lang.Exception _exception) {
  816 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  817 + .convert(
  818 + _resp,
  819 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  820 + }
  821 + }
  822 + } catch (org.apache.axis.AxisFault axisFaultException) {
  823 + throw axisFaultException;
  824 + }
  825 + }
  826 +
  827 + public com.bsth.webService.trafficManage.org.tempuri.Results setXLPC(
  828 + java.lang.String uName, java.lang.String uPass,
  829 + java.lang.String sXml) throws java.rmi.RemoteException {
  830 + if (super.cachedEndpoint == null) {
  831 + throw new org.apache.axis.NoEndPointException();
  832 + }
  833 + org.apache.axis.client.Call _call = createCall();
  834 + _call.setOperation(_operations[7]);
  835 + _call.setUseSOAPAction(true);
  836 + _call.setSOAPActionURI("http://tempuri.org/setXLPC");
  837 + _call.setEncodingStyle(null);
  838 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  839 + Boolean.FALSE);
  840 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  841 + Boolean.FALSE);
  842 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  843 + _call.setOperationName(new javax.xml.namespace.QName(
  844 + "http://tempuri.org/", "setXLPC"));
  845 +
  846 + setRequestHeaders(_call);
  847 + setAttachments(_call);
  848 + try {
  849 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  850 + uName, uPass, sXml });
  851 +
  852 + if (_resp instanceof java.rmi.RemoteException) {
  853 + throw (java.rmi.RemoteException) _resp;
  854 + } else {
  855 + extractAttachments(_call);
  856 + try {
  857 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  858 + } catch (java.lang.Exception _exception) {
  859 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  860 + .convert(
  861 + _resp,
  862 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  863 + }
  864 + }
  865 + } catch (org.apache.axis.AxisFault axisFaultException) {
  866 + throw axisFaultException;
  867 + }
  868 + }
  869 +
  870 + public com.bsth.webService.trafficManage.org.tempuri.Results setCS(
  871 + java.lang.String uName, java.lang.String uPass,
  872 + java.lang.String sXml) throws java.rmi.RemoteException {
  873 + if (super.cachedEndpoint == null) {
  874 + throw new org.apache.axis.NoEndPointException();
  875 + }
  876 + org.apache.axis.client.Call _call = createCall();
  877 + _call.setOperation(_operations[8]);
  878 + _call.setUseSOAPAction(true);
  879 + _call.setSOAPActionURI("http://tempuri.org/setCS");
  880 + _call.setEncodingStyle(null);
  881 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  882 + Boolean.FALSE);
  883 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  884 + Boolean.FALSE);
  885 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  886 + _call.setOperationName(new javax.xml.namespace.QName(
  887 + "http://tempuri.org/", "setCS"));
  888 +
  889 + setRequestHeaders(_call);
  890 + setAttachments(_call);
  891 + try {
  892 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  893 + uName, uPass, sXml });
  894 +
  895 + if (_resp instanceof java.rmi.RemoteException) {
  896 + throw (java.rmi.RemoteException) _resp;
  897 + } else {
  898 + extractAttachments(_call);
  899 + try {
  900 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  901 + } catch (java.lang.Exception _exception) {
  902 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  903 + .convert(
  904 + _resp,
  905 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  906 + }
  907 + }
  908 + } catch (org.apache.axis.AxisFault axisFaultException) {
  909 + throw axisFaultException;
  910 + }
  911 + }
  912 +
  913 + public com.bsth.webService.trafficManage.org.tempuri.Results setFZCKGM(
  914 + java.lang.String uName, java.lang.String uPass,
  915 + java.lang.String sXml) throws java.rmi.RemoteException {
  916 + if (super.cachedEndpoint == null) {
  917 + throw new org.apache.axis.NoEndPointException();
  918 + }
  919 + org.apache.axis.client.Call _call = createCall();
  920 + _call.setOperation(_operations[9]);
  921 + _call.setUseSOAPAction(true);
  922 + _call.setSOAPActionURI("http://tempuri.org/setFZCKGM");
  923 + _call.setEncodingStyle(null);
  924 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  925 + Boolean.FALSE);
  926 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  927 + Boolean.FALSE);
  928 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  929 + _call.setOperationName(new javax.xml.namespace.QName(
  930 + "http://tempuri.org/", "setFZCKGM"));
  931 +
  932 + setRequestHeaders(_call);
  933 + setAttachments(_call);
  934 + try {
  935 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  936 + uName, uPass, sXml });
  937 +
  938 + if (_resp instanceof java.rmi.RemoteException) {
  939 + throw (java.rmi.RemoteException) _resp;
  940 + } else {
  941 + extractAttachments(_call);
  942 + try {
  943 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  944 + } catch (java.lang.Exception _exception) {
  945 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  946 + .convert(
  947 + _resp,
  948 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  949 + }
  950 + }
  951 + } catch (org.apache.axis.AxisFault axisFaultException) {
  952 + throw axisFaultException;
  953 + }
  954 + }
  955 +
  956 + public com.bsth.webService.trafficManage.org.tempuri.Results setJJZD(
  957 + java.lang.String uName, java.lang.String uPass,
  958 + java.lang.String sXml) throws java.rmi.RemoteException {
  959 + if (super.cachedEndpoint == null) {
  960 + throw new org.apache.axis.NoEndPointException();
  961 + }
  962 + org.apache.axis.client.Call _call = createCall();
  963 + _call.setOperation(_operations[10]);
  964 + _call.setUseSOAPAction(true);
  965 + _call.setSOAPActionURI("http://tempuri.org/setJJZD");
  966 + _call.setEncodingStyle(null);
  967 + _call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
  968 + Boolean.FALSE);
  969 + _call.setProperty(org.apache.axis.AxisEngine.PROP_DOMULTIREFS,
  970 + Boolean.FALSE);
  971 + _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS);
  972 + _call.setOperationName(new javax.xml.namespace.QName(
  973 + "http://tempuri.org/", "setJJZD"));
  974 +
  975 + setRequestHeaders(_call);
  976 + setAttachments(_call);
  977 + try {
  978 + java.lang.Object _resp = _call.invoke(new java.lang.Object[] {
  979 + uName, uPass, sXml });
  980 +
  981 + if (_resp instanceof java.rmi.RemoteException) {
  982 + throw (java.rmi.RemoteException) _resp;
  983 + } else {
  984 + extractAttachments(_call);
  985 + try {
  986 + return (com.bsth.webService.trafficManage.org.tempuri.Results) _resp;
  987 + } catch (java.lang.Exception _exception) {
  988 + return (com.bsth.webService.trafficManage.org.tempuri.Results) org.apache.axis.utils.JavaUtils
  989 + .convert(
  990 + _resp,
  991 + com.bsth.webService.trafficManage.org.tempuri.Results.class);
  992 + }
  993 + }
  994 + } catch (org.apache.axis.AxisFault axisFaultException) {
  995 + throw axisFaultException;
  996 + }
  997 + }
  998 +
  999 +}
... ...