| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.cxfws.client.service.ck;
- 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.4-b01
- * Generated source version: 2.2
- *
- */
- @WebServiceClient(name = "ckService", targetNamespace = "http://webService.yjpt.com/", wsdlLocation = "http://192.168.30.141:8088/ckService?wsdl")
- public class CkService
- extends Service
- {
- private final static URL CKSERVICE_WSDL_LOCATION;
- private final static WebServiceException CKSERVICE_EXCEPTION;
- private final static QName CKSERVICE_QNAME = new QName("http://webService.yjpt.com/", "ckService");
- static {
- URL url = null;
- WebServiceException e = null;
- try {
- url = new URL("http://192.168.30.141:8088/ckService?wsdl");
- } catch (MalformedURLException ex) {
- e = new WebServiceException(ex);
- }
- CKSERVICE_WSDL_LOCATION = url;
- CKSERVICE_EXCEPTION = e;
- }
- public CkService() {
- super(__getWsdlLocation(), CKSERVICE_QNAME);
- }
- public CkService(WebServiceFeature... features) {
- super(__getWsdlLocation(), CKSERVICE_QNAME, features);
- }
- public CkService(URL wsdlLocation) {
- super(wsdlLocation, CKSERVICE_QNAME);
- }
- public CkService(URL wsdlLocation, WebServiceFeature... features) {
- super(wsdlLocation, CKSERVICE_QNAME, features);
- }
- public CkService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
- public CkService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
- super(wsdlLocation, serviceName, features);
- }
- /**
- *
- * @return
- * returns CkWebService
- */
- @WebEndpoint(name = "CkWebServicePort")
- public CkWebService getCkWebServicePort() {
- return super.getPort(new QName("http://webService.yjpt.com/", "CkWebServicePort"), CkWebService.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 CkWebService
- */
- @WebEndpoint(name = "CkWebServicePort")
- public CkWebService getCkWebServicePort(WebServiceFeature... features) {
- return super.getPort(new QName("http://webService.yjpt.com/", "CkWebServicePort"), CkWebService.class, features);
- }
- private static URL __getWsdlLocation() {
- if (CKSERVICE_EXCEPTION!= null) {
- throw CKSERVICE_EXCEPTION;
- }
- return CKSERVICE_WSDL_LOCATION;
- }
- }
|