Java Code Examples for com.sun.xml.internal.ws.api.WSBinding#getFeature()
The following examples show how to use
com.sun.xml.internal.ws.api.WSBinding#getFeature() .
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: MtomPolicyMapConfigurator.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * Generates an MTOM policy if MTOM is enabled. * * <ol> * <li>If MTOM is enabled * <ol> * <li>If MTOM policy does not already exist, generate * <li>Otherwise do nothing * </ol> * <li>Otherwise, do nothing (that implies that we do not remove any MTOM policies if MTOM is disabled) * </ol> * */ public Collection<PolicySubject> update(PolicyMap policyMap, SEIModel model, WSBinding wsBinding) throws PolicyException { LOGGER.entering(policyMap, model, wsBinding); Collection<PolicySubject> subjects = new ArrayList<PolicySubject>(); if (policyMap != null) { final MTOMFeature mtomFeature = wsBinding.getFeature(MTOMFeature.class); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.finest("mtomFeature = " + mtomFeature); } if ((mtomFeature != null) && mtomFeature.isEnabled()) { final QName bindingName = model.getBoundPortTypeName(); final WsdlBindingSubject wsdlSubject = WsdlBindingSubject.createBindingSubject(bindingName); final Policy mtomPolicy = createMtomPolicy(bindingName); final PolicySubject mtomPolicySubject = new PolicySubject(wsdlSubject, mtomPolicy); subjects.add(mtomPolicySubject); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.fine("Added MTOM policy with ID \"" + mtomPolicy.getIdOrName() + "\" to binding element \"" + bindingName + "\""); } } } // endif policy map not null LOGGER.exiting(subjects); return subjects; }
Example 2
Source File: AddressingPolicyMapConfigurator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * Puts an addressing policy into the PolicyMap if the addressing feature was set. */ public Collection<PolicySubject> update(final PolicyMap policyMap, final SEIModel model, final WSBinding wsBinding) throws PolicyException { LOGGER.entering(policyMap, model, wsBinding); Collection<PolicySubject> subjects = new ArrayList<PolicySubject>(); if (policyMap != null) { final AddressingFeature addressingFeature = wsBinding.getFeature(AddressingFeature.class); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.finest("addressingFeature = " + addressingFeature); } if ((addressingFeature != null) && addressingFeature.isEnabled()) { //add wsam:Addrressing assertion if not exists. addWsamAddressing(subjects, policyMap, model, addressingFeature); } } // endif policy map not null LOGGER.exiting(subjects); return subjects; }
Example 3
Source File: AddressingPolicyMapConfigurator.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * Puts an addressing policy into the PolicyMap if the addressing feature was set. */ public Collection<PolicySubject> update(final PolicyMap policyMap, final SEIModel model, final WSBinding wsBinding) throws PolicyException { LOGGER.entering(policyMap, model, wsBinding); Collection<PolicySubject> subjects = new ArrayList<PolicySubject>(); if (policyMap != null) { final AddressingFeature addressingFeature = wsBinding.getFeature(AddressingFeature.class); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.finest("addressingFeature = " + addressingFeature); } if ((addressingFeature != null) && addressingFeature.isEnabled()) { //add wsam:Addrressing assertion if not exists. addWsamAddressing(subjects, policyMap, model, addressingFeature); } } // endif policy map not null LOGGER.exiting(subjects); return subjects; }
Example 4
Source File: AddressingPolicyMapConfigurator.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * Puts an addressing policy into the PolicyMap if the addressing feature was set. */ public Collection<PolicySubject> update(final PolicyMap policyMap, final SEIModel model, final WSBinding wsBinding) throws PolicyException { LOGGER.entering(policyMap, model, wsBinding); Collection<PolicySubject> subjects = new ArrayList<PolicySubject>(); if (policyMap != null) { final AddressingFeature addressingFeature = wsBinding.getFeature(AddressingFeature.class); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.finest("addressingFeature = " + addressingFeature); } if ((addressingFeature != null) && addressingFeature.isEnabled()) { //add wsam:Addrressing assertion if not exists. addWsamAddressing(subjects, policyMap, model, addressingFeature); } } // endif policy map not null LOGGER.exiting(subjects); return subjects; }
Example 5
Source File: AddressingPolicyMapConfigurator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * Puts an addressing policy into the PolicyMap if the addressing feature was set. */ public Collection<PolicySubject> update(final PolicyMap policyMap, final SEIModel model, final WSBinding wsBinding) throws PolicyException { LOGGER.entering(policyMap, model, wsBinding); Collection<PolicySubject> subjects = new ArrayList<PolicySubject>(); if (policyMap != null) { final AddressingFeature addressingFeature = wsBinding.getFeature(AddressingFeature.class); if (LOGGER.isLoggable(Level.FINEST)) { LOGGER.finest("addressingFeature = " + addressingFeature); } if ((addressingFeature != null) && addressingFeature.isEnabled()) { //add wsam:Addrressing assertion if not exists. addWsamAddressing(subjects, policyMap, model, addressingFeature); } } // endif policy map not null LOGGER.exiting(subjects); return subjects; }
Example 6
Source File: Packet.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public MTOMFeature getMtomFeature() { //If we have a binding, use that in preference to an explicitly //set MTOMFeature WSBinding binding = getBinding(); if (binding != null) { return binding.getFeature(MTOMFeature.class); } return mtomFeature; }
Example 7
Source File: W3CAddressingWSDLGeneratorExtension.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override public void start(WSDLGenExtnContext ctxt) { WSBinding binding = ctxt.getBinding(); TypedXmlWriter root = ctxt.getRoot(); enabled = binding.isFeatureEnabled(AddressingFeature.class); if (!enabled) return; AddressingFeature ftr = binding.getFeature(AddressingFeature.class); required = ftr.isRequired(); root._namespace(AddressingVersion.W3C.wsdlNsUri, AddressingVersion.W3C.getWsdlPrefix()); }
Example 8
Source File: EndpointFactory.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public static MetadataReader getExternalMetadatReader(Class<?> implType, WSBinding binding) { com.oracle.webservices.internal.api.databinding.ExternalMetadataFeature ef = binding.getFeature( com.oracle.webservices.internal.api.databinding.ExternalMetadataFeature.class); // TODO-Miran: would it be necessary to disable secure xml processing? if (ef != null) return ef.getMetadataReader(implType.getClassLoader(), false); return null; }
Example 9
Source File: W3CAddressingWSDLGeneratorExtension.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Override public void start(WSDLGenExtnContext ctxt) { WSBinding binding = ctxt.getBinding(); TypedXmlWriter root = ctxt.getRoot(); enabled = binding.isFeatureEnabled(AddressingFeature.class); if (!enabled) return; AddressingFeature ftr = binding.getFeature(AddressingFeature.class); required = ftr.isRequired(); root._namespace(AddressingVersion.W3C.wsdlNsUri, AddressingVersion.W3C.getWsdlPrefix()); }
Example 10
Source File: Packet.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public MTOMFeature getMtomFeature() { //If we have a binding, use that in preference to an explicitly //set MTOMFeature WSBinding binding = getBinding(); if (binding != null) { return binding.getFeature(MTOMFeature.class); } return mtomFeature; }
Example 11
Source File: W3CAddressingWSDLGeneratorExtension.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
@Override public void start(WSDLGenExtnContext ctxt) { WSBinding binding = ctxt.getBinding(); TypedXmlWriter root = ctxt.getRoot(); enabled = binding.isFeatureEnabled(AddressingFeature.class); if (!enabled) return; AddressingFeature ftr = binding.getFeature(AddressingFeature.class); required = ftr.isRequired(); root._namespace(AddressingVersion.W3C.wsdlNsUri, AddressingVersion.W3C.getWsdlPrefix()); }
Example 12
Source File: Packet.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public MTOMFeature getMtomFeature() { //If we have a binding, use that in preference to an explicitly //set MTOMFeature WSBinding binding = getBinding(); if (binding != null) { return binding.getFeature(MTOMFeature.class); } return mtomFeature; }
Example 13
Source File: AddressingUtils.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public static void fillRequestAddressingHeaders(MessageHeaders headers, WSDLPort wsdlPort, WSBinding binding, Packet packet) { if (binding == null) { throw new IllegalArgumentException(AddressingMessages.NULL_BINDING()); } if (binding.isFeatureEnabled(SuppressAutomaticWSARequestHeadersFeature.class)) { return; } //See if WSA headers are already set by the user. MessageHeaders hl = packet.getMessage().getHeaders(); String action = AddressingUtils.getAction(hl, binding.getAddressingVersion(), binding.getSOAPVersion()); if (action != null) { //assume that all the WSA headers are set by the user return; } AddressingVersion addressingVersion = binding.getAddressingVersion(); //seiModel is passed as null as it is not needed. WsaTubeHelper wsaHelper = addressingVersion.getWsaHelper(wsdlPort, null, binding); // wsa:Action String effectiveInputAction = wsaHelper.getEffectiveInputAction(packet); if (effectiveInputAction == null || effectiveInputAction.equals("") && binding.getSOAPVersion() == SOAPVersion.SOAP_11) { throw new WebServiceException(ClientMessages.INVALID_SOAP_ACTION()); } boolean oneway = !packet.expectReply; if (wsdlPort != null) { // if WSDL has <wsaw:Anonymous>prohibited</wsaw:Anonymous>, then throw an error // as anonymous ReplyTo MUST NOT be added in that case. BindingProvider need to // disable AddressingFeature and MemberSubmissionAddressingFeature and hand-craft // the SOAP message with non-anonymous ReplyTo/FaultTo. if (!oneway && packet.getMessage() != null && packet.getWSDLOperation() != null) { WSDLBoundOperation wbo = wsdlPort.getBinding().get(packet.getWSDLOperation()); if (wbo != null && wbo.getAnonymous() == WSDLBoundOperation.ANONYMOUS.prohibited) { throw new WebServiceException(AddressingMessages.WSAW_ANONYMOUS_PROHIBITED()); } } } OneWayFeature oneWayFeature = binding.getFeature(OneWayFeature.class); final AddressingPropertySet addressingPropertySet = packet.getSatellite(AddressingPropertySet.class); oneWayFeature = addressingPropertySet == null ? oneWayFeature : new OneWayFeature(addressingPropertySet, addressingVersion); if (oneWayFeature == null || !oneWayFeature.isEnabled()) { // standard oneway fillRequestAddressingHeaders(headers, packet, addressingVersion, binding.getSOAPVersion(), oneway, effectiveInputAction, AddressingVersion.isRequired(binding)); } else { // custom oneway fillRequestAddressingHeaders(headers, packet, addressingVersion, binding.getSOAPVersion(), oneWayFeature, oneway, effectiveInputAction); } }
Example 14
Source File: W3CWsaServerTube.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { super(endpoint, wsdlPort, binding, next); af = binding.getFeature(AddressingFeature.class); }
Example 15
Source File: StreamSOAPCodec.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
StreamSOAPCodec(WSBinding binding) { this(binding.getSOAPVersion(), binding.getFeature(SerializationFeature.class)); }
Example 16
Source File: AbstractSchemaValidationTube.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public AbstractSchemaValidationTube(WSBinding binding, Tube next) { super(next); this.binding = binding; feature = binding.getFeature(SchemaValidationFeature.class); sf = allowExternalAccess(SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI), "file", false); }
Example 17
Source File: W3CWsaServerTube.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { super(endpoint, wsdlPort, binding, next); af = binding.getFeature(AddressingFeature.class); }
Example 18
Source File: StreamSOAPCodec.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
StreamSOAPCodec(WSBinding binding) { this(binding.getSOAPVersion(), binding.getFeature(SerializationFeature.class)); }
Example 19
Source File: W3CWsaServerTube.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { super(endpoint, wsdlPort, binding, next); af = binding.getFeature(AddressingFeature.class); }
Example 20
Source File: AddressingUtils.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public static void fillRequestAddressingHeaders(MessageHeaders headers, WSDLPort wsdlPort, WSBinding binding, Packet packet) { if (binding == null) { throw new IllegalArgumentException(AddressingMessages.NULL_BINDING()); } if (binding.isFeatureEnabled(SuppressAutomaticWSARequestHeadersFeature.class)) { return; } //See if WSA headers are already set by the user. MessageHeaders hl = packet.getMessage().getHeaders(); String action = AddressingUtils.getAction(hl, binding.getAddressingVersion(), binding.getSOAPVersion()); if (action != null) { //assume that all the WSA headers are set by the user return; } AddressingVersion addressingVersion = binding.getAddressingVersion(); //seiModel is passed as null as it is not needed. WsaTubeHelper wsaHelper = addressingVersion.getWsaHelper(wsdlPort, null, binding); // wsa:Action String effectiveInputAction = wsaHelper.getEffectiveInputAction(packet); if (effectiveInputAction == null || effectiveInputAction.equals("") && binding.getSOAPVersion() == SOAPVersion.SOAP_11) { throw new WebServiceException(ClientMessages.INVALID_SOAP_ACTION()); } boolean oneway = !packet.expectReply; if (wsdlPort != null) { // if WSDL has <wsaw:Anonymous>prohibited</wsaw:Anonymous>, then throw an error // as anonymous ReplyTo MUST NOT be added in that case. BindingProvider need to // disable AddressingFeature and MemberSubmissionAddressingFeature and hand-craft // the SOAP message with non-anonymous ReplyTo/FaultTo. if (!oneway && packet.getMessage() != null && packet.getWSDLOperation() != null) { WSDLBoundOperation wbo = wsdlPort.getBinding().get(packet.getWSDLOperation()); if (wbo != null && wbo.getAnonymous() == WSDLBoundOperation.ANONYMOUS.prohibited) { throw new WebServiceException(AddressingMessages.WSAW_ANONYMOUS_PROHIBITED()); } } } OneWayFeature oneWayFeature = binding.getFeature(OneWayFeature.class); final AddressingPropertySet addressingPropertySet = packet.getSatellite(AddressingPropertySet.class); oneWayFeature = addressingPropertySet == null ? oneWayFeature : new OneWayFeature(addressingPropertySet, addressingVersion); if (oneWayFeature == null || !oneWayFeature.isEnabled()) { // standard oneway fillRequestAddressingHeaders(headers, packet, addressingVersion, binding.getSOAPVersion(), oneway, effectiveInputAction, AddressingVersion.isRequired(binding)); } else { // custom oneway fillRequestAddressingHeaders(headers, packet, addressingVersion, binding.getSOAPVersion(), oneWayFeature, oneway, effectiveInputAction); } }