com.sun.xml.internal.ws.client.WSServiceDelegate Java Examples

The following examples show how to use com.sun.xml.internal.ws.client.WSServiceDelegate. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProviderImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
                                              WebServiceFeature ... features) {
    for (WebServiceFeature feature : features) {
        if (!(feature instanceof ServiceSharedFeatureMarker))
        throw new WebServiceException("Doesn't support any Service specific features");
    }
    return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass, features);
}
 
Example #2
Source File: ProviderImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
                                              WebServiceFeature ... features) {
    for (WebServiceFeature feature : features) {
        if (!(feature instanceof ServiceSharedFeatureMarker))
        throw new WebServiceException("Doesn't support any Service specific features");
    }
    return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass, features);
}
 
Example #3
Source File: SEIStub.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
    super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example #4
Source File: SEIStub.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
    super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example #5
Source File: SEIStub.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
    super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example #6
Source File: SEIStub.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Deprecated
public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) {
    super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example #7
Source File: ProviderImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
                                              WebServiceFeature ... features) {
    for (WebServiceFeature feature : features) {
        if (!(feature instanceof ServiceSharedFeatureMarker))
        throw new WebServiceException("Doesn't support any Service specific features");
    }
    return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass, features);
}
 
Example #8
Source File: ProviderImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass,
                                              WebServiceFeature ... features) {
    for (WebServiceFeature feature : features) {
        if (!(feature instanceof ServiceSharedFeatureMarker))
        throw new WebServiceException("Doesn't support any Service specific features");
    }
    return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass, features);
}
 
Example #9
Source File: SOAPMessageDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPMessageDispatch(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
}
 
Example #10
Source File: JAXBDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public JAXBDispatch(QName port, JAXBContext jc, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, service, pipe, binding, epr);
    this.jaxbcontext = jc;
    this.isContextSupported = BindingContextFactory.isContextSupported(jc);
}
 
Example #11
Source File: SOAPSourceDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert !isXMLHttp(binding);
}
 
Example #12
Source File: ProviderImpl.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public ServiceDelegate createServiceDelegate( Source wsdlSource, QName serviceName, Class serviceClass) {
     return new WSServiceDelegate(wsdlSource, serviceName, serviceClass);
}
 
Example #13
Source File: ProviderImpl.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass) {
     return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass);
}
 
Example #14
Source File: SOAPMessageDispatch.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPMessageDispatch(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
}
 
Example #15
Source File: RESTSourceDispatch.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert isXMLHttp(binding);
}
 
Example #16
Source File: JAXBDispatch.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public JAXBDispatch(QName port, JAXBContext jc, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, service, pipe, binding, epr);
    this.jaxbcontext = jc;
    this.isContextSupported = BindingContextFactory.isContextSupported(jc);
}
 
Example #17
Source File: ProviderImpl.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public ServiceDelegate createServiceDelegate( Source wsdlSource, QName serviceName, Class serviceClass) {
     return new WSServiceDelegate(wsdlSource, serviceName, serviceClass);
}
 
Example #18
Source File: ProviderImpl.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass) {
     return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass);
}
 
Example #19
Source File: RESTSourceDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert isXMLHttp(binding);
}
 
Example #20
Source File: MessageDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public MessageDispatch(QName port, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, Mode.MESSAGE, service, pipe, binding, epr);
}
 
Example #21
Source File: RESTSourceDispatch.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert isXMLHttp(binding);
}
 
Example #22
Source File: DataSourceDispatch.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public DataSourceDispatch(QName port, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
   super(port, mode, service, pipe, binding, epr );
}
 
Example #23
Source File: DataSourceDispatch.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public DataSourceDispatch(QName port, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
   super(port, mode, service, pipe, binding, epr );
}
 
Example #24
Source File: RESTSourceDispatch.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public RESTSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert isXMLHttp(binding);
}
 
Example #25
Source File: SOAPMessageDispatch.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPMessageDispatch(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
}
 
Example #26
Source File: SOAPSourceDispatch.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert !isXMLHttp(binding);
}
 
Example #27
Source File: MessageDispatch.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public MessageDispatch(QName port, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, Mode.MESSAGE, service, pipe, binding, epr);
}
 
Example #28
Source File: SOAPSourceDispatch.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert !isXMLHttp(binding);
}
 
Example #29
Source File: SOAPSourceDispatch.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
@Deprecated
public SOAPSourceDispatch(QName port, Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
    super(port, mode, owner, pipe, binding, epr);
    assert !isXMLHttp(binding);
}
 
Example #30
Source File: ProviderImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public ServiceDelegate createServiceDelegate( Source wsdlSource, QName serviceName, Class serviceClass) {
     return new WSServiceDelegate(wsdlSource, serviceName, serviceClass);
}