Search in sources :

Example 1 with WsaTubeHelper

use of com.sun.xml.ws.addressing.WsaTubeHelper in project metro-jax-ws by eclipse-ee4j.

the class Messages method createAddressingFaultMessage.

/**
 * Creates a fault {@link Message} that captures the code/subcode/subsubcode
 * defined by WS-Addressing if one of the expected WS-Addressing headers is
 * missing in the message
 *
 * @param binding WSBinding
 * @param p
 *      {@link Packet} that was missing a WS-Addressing header.
 * @param missingHeader The missing WS-Addressing Header
 * @return
 *      A message representing SOAPFault that contains the WS-Addressing code/subcode/subsubcode.
 */
public static Message createAddressingFaultMessage(WSBinding binding, Packet p, QName missingHeader) {
    AddressingVersion av = binding.getAddressingVersion();
    if (av == null) {
        // Addressing is not enabled.
        throw new WebServiceException(AddressingMessages.ADDRESSING_SHOULD_BE_ENABLED());
    }
    WsaTubeHelper helper = av.getWsaHelper(null, null, binding);
    return create(helper.newMapRequiredFault(new MissingAddressingHeaderException(missingHeader, p)));
}
Also used : AddressingVersion(com.sun.xml.ws.api.addressing.AddressingVersion) WebServiceException(jakarta.xml.ws.WebServiceException) WsaTubeHelper(com.sun.xml.ws.addressing.WsaTubeHelper) MissingAddressingHeaderException(com.sun.xml.ws.addressing.model.MissingAddressingHeaderException)

Example 2 with WsaTubeHelper

use of com.sun.xml.ws.addressing.WsaTubeHelper in project metro-jax-ws by eclipse-ee4j.

the class Packet method populateAddressingHeaders.

private void populateAddressingHeaders(WSBinding binding, Packet responsePacket, WSDLPort wsdlPort, SEIModel seiModel) {
    AddressingVersion addressingVersion = binding.getAddressingVersion();
    if (addressingVersion == null) {
        return;
    }
    WsaTubeHelper wsaHelper = addressingVersion.getWsaHelper(wsdlPort, seiModel, binding);
    String action = responsePacket.getMessage().isFault() ? wsaHelper.getFaultAction(this, responsePacket) : wsaHelper.getOutputAction(this);
    if (action == null) {
        LOGGER.info("WSA headers are not added as value for wsa:Action cannot be resolved for this message");
        return;
    }
    populateAddressingHeaders(responsePacket, addressingVersion, binding.getSOAPVersion(), action, AddressingVersion.isRequired(binding));
}
Also used : AddressingVersion(com.sun.xml.ws.api.addressing.AddressingVersion) WsaTubeHelper(com.sun.xml.ws.addressing.WsaTubeHelper)

Example 3 with WsaTubeHelper

use of com.sun.xml.ws.addressing.WsaTubeHelper in project metro-jax-ws by eclipse-ee4j.

the class AddressingUtils method fillRequestAddressingHeaders.

// private void fillRequestAddressingHeaders(Packet packet, AddressingVersion av, SOAPVersion sv, OneWayFeature oneWayFeature, boolean oneway, String action);
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) {
        // 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);
    }
}
Also used : AddressingVersion(com.sun.xml.ws.api.addressing.AddressingVersion) WsaTubeHelper(com.sun.xml.ws.addressing.WsaTubeHelper) WebServiceException(jakarta.xml.ws.WebServiceException) WSDLBoundOperation(com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation) OneWayFeature(com.sun.xml.ws.api.addressing.OneWayFeature) AddressingPropertySet(com.sun.xml.ws.api.addressing.AddressingPropertySet)

Aggregations

WsaTubeHelper (com.sun.xml.ws.addressing.WsaTubeHelper)3 AddressingVersion (com.sun.xml.ws.api.addressing.AddressingVersion)3 WebServiceException (jakarta.xml.ws.WebServiceException)2 MissingAddressingHeaderException (com.sun.xml.ws.addressing.model.MissingAddressingHeaderException)1 AddressingPropertySet (com.sun.xml.ws.api.addressing.AddressingPropertySet)1 OneWayFeature (com.sun.xml.ws.api.addressing.OneWayFeature)1 WSDLBoundOperation (com.sun.xml.ws.api.model.wsdl.WSDLBoundOperation)1