| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
-
- package com.chinaitop.depot.webservice;
-
- import java.net.MalformedURLException;
- import java.net.URL;
- import javax.xml.namespace.QName;
- import javax.xml.ws.Service;
- import javax.xml.ws.WebEndpoint;
- import javax.xml.ws.WebServiceClient;
- import javax.xml.ws.WebServiceException;
- import javax.xml.ws.WebServiceFeature;
-
-
- /**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2.9-b130926.1035
- * Generated source version: 2.2
- *
- */
- @WebServiceClient(name = "ExchangeServer", targetNamespace = "http://webServices/", wsdlLocation = "http://192.167.120.18:9025/yhzx/webServices/ExchangeServer?wsdl")
- public class ExchangeServer
- extends Service
- {
-
- private final static URL EXCHANGESERVER_WSDL_LOCATION;
- private final static WebServiceException EXCHANGESERVER_EXCEPTION;
- private final static QName EXCHANGESERVER_QNAME = new QName("http://webServices/", "ExchangeServer");
-
- static {
- URL url = null;
- WebServiceException e = null;
- try {
- url = new URL("http://192.167.120.18:9025/yhzx/webServices/ExchangeServer?wsdl");
- } catch (MalformedURLException ex) {
- e = new WebServiceException(ex);
- }
- EXCHANGESERVER_WSDL_LOCATION = url;
- EXCHANGESERVER_EXCEPTION = e;
- }
-
- public ExchangeServer() {
- super(__getWsdlLocation(), EXCHANGESERVER_QNAME);
- }
-
- public ExchangeServer(WebServiceFeature... features) {
- super(__getWsdlLocation(), EXCHANGESERVER_QNAME, features);
- }
-
- public ExchangeServer(URL wsdlLocation) {
- super(wsdlLocation, EXCHANGESERVER_QNAME);
- }
-
- public ExchangeServer(URL wsdlLocation, WebServiceFeature... features) {
- super(wsdlLocation, EXCHANGESERVER_QNAME, features);
- }
-
- public ExchangeServer(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- public ExchangeServer(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
- super(wsdlLocation, serviceName, features);
- }
-
- /**
- *
- * @return
- * returns IExchangeService
- */
- @WebEndpoint(name = "ExchangeServiceImplPort")
- public IExchangeService getExchangeServiceImplPort() {
- return super.getPort(new QName("http://webServices/", "ExchangeServiceImplPort"), IExchangeService.class);
- }
-
- /**
- *
- * @param features
- * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
- * @return
- * returns IExchangeService
- */
- @WebEndpoint(name = "ExchangeServiceImplPort")
- public IExchangeService getExchangeServiceImplPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://webServices/", "ExchangeServiceImplPort"), IExchangeService.class, features);
- }
-
- private static URL __getWsdlLocation() {
- if (EXCHANGESERVER_EXCEPTION!= null) {
- throw EXCHANGESERVER_EXCEPTION;
- }
- return EXCHANGESERVER_WSDL_LOCATION;
- }
-
- }
|