Java Code Examples for com.sun.xml.internal.ws.binding.BindingImpl#getSOAPVersion()

The following examples show how to use com.sun.xml.internal.ws.binding.BindingImpl#getSOAPVersion() . 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: SEIStub.java    From openjdk-8 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 2
Source File: SEIStub.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public SEIStub(WSPortInfo portInfo, BindingImpl binding, SOAPSEIModel seiModel, WSEndpointReference epr) {
    super(portInfo, binding, seiModel.getPort().getAddress(),epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example 3
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 4
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 5
Source File: SEIStub.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public SEIStub(WSPortInfo portInfo, BindingImpl binding, SOAPSEIModel seiModel, WSEndpointReference epr) {
    super(portInfo, binding, seiModel.getPort().getAddress(),epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example 6
Source File: SEIStub.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public SEIStub(WSPortInfo portInfo, BindingImpl binding, SOAPSEIModel seiModel, WSEndpointReference epr) {
    super(portInfo, binding, seiModel.getPort().getAddress(),epr);
    this.seiModel = seiModel;
    this.soapVersion = binding.getSOAPVersion();
    databinding = seiModel.getDatabinding();
    initMethodHandlers();
}
 
Example 7
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 8
Source File: SEIStub.java    From TencentKona-8 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 9
Source File: DispatchImpl.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param port    dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param owner   Service that created the Dispatch
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 */
@Deprecated
protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
    super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = false;
}
 
Example 10
Source File: DispatchImpl.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * @param portInfo dispatch instance is associated with this portInfo
 * @param mode     Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param binding  Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param pipe    Master pipe for the pipeline
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, Tube pipe, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 11
Source File: DispatchImpl.java    From jdk8u60 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param portportInfo dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 12
Source File: DispatchImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param port    dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param owner   Service that created the Dispatch
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 */
@Deprecated
protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
    super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = false;
}
 
Example 13
Source File: DispatchImpl.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param port    dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param owner   Service that created the Dispatch
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 */
@Deprecated
protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
    super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = false;
}
 
Example 14
Source File: DispatchImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param port    dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param owner   Service that created the Dispatch
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 */
@Deprecated
protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
    super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = false;
}
 
Example 15
Source File: DispatchImpl.java    From TencentKona-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * @param portInfo dispatch instance is associated with this portInfo
 * @param mode     Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param binding  Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param pipe    Master pipe for the pipeline
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, Tube pipe, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 16
Source File: DispatchImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param portportInfo dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 17
Source File: DispatchImpl.java    From hottub with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param portportInfo dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 18
Source File: DispatchImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 3 votes vote down vote up
/**
 *
 * @param port    dispatch instance is associated with this wsdl port qName
 * @param mode    Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param owner   Service that created the Dispatch
 * @param pipe    Master pipe for the pipeline
 * @param binding Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 */
@Deprecated
protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
    super(port, owner, pipe, binding, (owner.getWsdlService() != null)? owner.getWsdlService().get(port) : null , owner.getEndpointAddress(port), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = false;
}
 
Example 19
Source File: DispatchImpl.java    From openjdk-8 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * @param portInfo dispatch instance is associated with this portInfo
 * @param mode     Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param binding  Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param pipe    Master pipe for the pipeline
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, Tube pipe, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}
 
Example 20
Source File: DispatchImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 3 votes vote down vote up
/**
 * @param portInfo dispatch instance is associated with this portInfo
 * @param mode     Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
 * @param binding  Binding of this Dispatch instance, current one of SOAP/HTTP or XML/HTTP
 * @param pipe    Master pipe for the pipeline
 * @param allowFaultResponseMsg A packet containing a SOAP fault message is allowed as the response to a request on this dispatch instance.
 */
protected DispatchImpl(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, Tube pipe, @Nullable WSEndpointReference epr, boolean allowFaultResponseMsg) {
    super(portInfo, binding, pipe, portInfo.getEndpointAddress(), epr);
    this.mode = mode;
    this.soapVersion = binding.getSOAPVersion();
    this.allowFaultResponseMsg = allowFaultResponseMsg;
}