com.sun.xml.internal.ws.message.StringHeader Java Examples

The following examples show how to use com.sun.xml.internal.ws.message.StringHeader. 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: AddressingUtils.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #2
Source File: AddressingUtils.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #3
Source File: AddressingUtils.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #4
Source File: AddressingUtils.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #5
Source File: AddressingUtils.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #6
Source File: AddressingUtils.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #7
Source File: AddressingUtils.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #8
Source File: AddressingUtils.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public static void fillRequestAddressingHeaders(MessageHeaders headers, Packet packet, AddressingVersion av, SOAPVersion sv, boolean oneway, String action, boolean mustUnderstand) {
    fillCommonAddressingHeaders(headers, packet, av, sv, action, mustUnderstand);

    // wsa:ReplyTo
    // null or "true" is equivalent to request/response MEP
    if (!oneway) {
        WSEndpointReference epr = av.anonymousEpr;
        if (headers.get(av.replyToTag, false) == null) {
          headers.add(epr.createHeader(av.replyToTag));
        }

        // wsa:FaultTo
        if (headers.get(av.faultToTag, false) == null) {
          headers.add(epr.createHeader(av.faultToTag));
        }

        // wsa:MessageID
        if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
            if (headers.get(av.messageIDTag, false) == null) {
                Header h = new StringHeader(av.messageIDTag, Message.generateMessageID());
                headers.add(h);
            }
        }
    }
}
 
Example #9
Source File: Message.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #10
Source File: Message.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #11
Source File: Message.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #12
Source File: Message.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #13
Source File: Message.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #14
Source File: Message.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #15
Source File: Message.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #16
Source File: Message.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Retuns a unique id for the message.
 * <p><p>
 * @see {@link #getID(com.sun.xml.internal.ws.api.WSBinding)} for detailed description.
 * @param av WS-Addressing version
 * @param sv SOAP version
 * @return unique id for the message
 * @deprecated
 */
public @NotNull String getID(AddressingVersion av, SOAPVersion sv) {
    String uuid = null;
    if (av != null) {
        uuid = AddressingUtils.getMessageID(getHeaders(), av, sv);
    }
    if (uuid == null) {
        uuid = generateMessageID();
        getHeaders().add(new StringHeader(av.messageIDTag, uuid));
    }
    return uuid;
}
 
Example #17
Source File: Packet.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #18
Source File: AddressingUtils.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #19
Source File: AddressingUtils.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #20
Source File: AddressingUtils.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #21
Source File: Packet.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #22
Source File: AddressingUtils.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #23
Source File: Packet.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #24
Source File: Packet.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #25
Source File: AddressingUtils.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #26
Source File: AddressingUtils.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #27
Source File: Packet.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #28
Source File: AddressingUtils.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
private static void fillRequestAddressingHeaders(@NotNull MessageHeaders headers, @NotNull Packet packet, @NotNull AddressingVersion av, @NotNull SOAPVersion sv, @NotNull OneWayFeature oneWayFeature, boolean oneway, @NotNull String action) {
    if (!oneway&&!oneWayFeature.isUseAsyncWithSyncInvoke() && Boolean.TRUE.equals(packet.isSynchronousMEP)) {
        fillRequestAddressingHeaders(headers, packet, av, sv, oneway, action);
    } else {
        fillCommonAddressingHeaders(headers, packet, av, sv, action, false);

        boolean isMessageIdAdded = false;

        // wsa:ReplyTo
        // add if it doesn't already exist and OneWayFeature requests a specific ReplyTo
        if (headers.get(av.replyToTag, false) == null) {
            WSEndpointReference replyToEpr = oneWayFeature.getReplyTo();
            if (replyToEpr != null) {
                headers.add(replyToEpr.createHeader(av.replyToTag));
                // add wsa:MessageID only for non-null ReplyTo
                if (packet.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
                    // if header doesn't exist, method getID creates a new random id
                    String newID = oneWayFeature.getMessageId() == null ? Message.generateMessageID() : oneWayFeature.getMessageId();
                    headers.add(new StringHeader(av.messageIDTag, newID));
                    isMessageIdAdded = true;
                }
            }
        }

        // If the user sets a messageId, use it.
        final String messageId = oneWayFeature.getMessageId();
        if (!isMessageIdAdded && messageId != null) {
            headers.add(new StringHeader(av.messageIDTag, messageId));
        }

        // wsa:FaultTo
        // add if it doesn't already exist and OneWayFeature requests a specific FaultTo
        if (headers.get(av.faultToTag, false) == null) {
            WSEndpointReference faultToEpr = oneWayFeature.getFaultTo();
            if (faultToEpr != null) {
                headers.add(faultToEpr.createHeader(av.faultToTag));
                // add wsa:MessageID only for non-null FaultTo
                if (headers.get(av.messageIDTag, false) == null) {
                    headers.add(new StringHeader(av.messageIDTag, Message.generateMessageID()));
              }
            }
        }

        // wsa:From
        if (oneWayFeature.getFrom() != null) {
            headers.addOrReplace(oneWayFeature.getFrom().createHeader(av.fromTag));
        }

        // wsa:RelatesTo
        if (oneWayFeature.getRelatesToID() != null) {
            headers.addOrReplace(new RelatesToHeader(av.relatesToTag, oneWayFeature.getRelatesToID()));
        }
    }
}
 
Example #29
Source File: Packet.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}
 
Example #30
Source File: Packet.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
private void populateAddressingHeaders(Packet responsePacket, AddressingVersion av, SOAPVersion sv, String action, boolean mustUnderstand) {
    // populate WS-A headers only if WS-A is enabled
    if (av == null) return;

    // if one-way, then dont populate any WS-A headers
    if (responsePacket.getMessage() == null)
        return;

    MessageHeaders hl = responsePacket.getMessage().getHeaders();

    WsaPropertyBag wpb = getSatellite(WsaPropertyBag.class);
    Message msg = getMessage();
    // wsa:To
    WSEndpointReference replyTo = null;
    Header replyToFromRequestMsg = AddressingUtils.getFirstHeader(msg.getHeaders(), av.replyToTag, true, sv);
    Header replyToFromResponseMsg = hl.get(av.toTag, false);
    boolean replaceToTag = true;
    try{
        if (replyToFromRequestMsg != null){
            replyTo = replyToFromRequestMsg.readAsEPR(av);
        }
        if (replyToFromResponseMsg != null && replyTo == null) {
            replaceToTag = false;
        }
    } catch (XMLStreamException e) {
        throw new WebServiceException(AddressingMessages.REPLY_TO_CANNOT_PARSE(), e);
    }
    if (replyTo == null) {
          replyTo = AddressingUtils.getReplyTo(msg.getHeaders(), av, sv);
    }

    // wsa:Action, add if the message doesn't already contain it,
    // generally true for SEI case where there is SEIModel or WSDLModel
    //           false for Provider with no wsdl, Expects User to set the coresponding header on the Message.
    if (AddressingUtils.getAction(responsePacket.getMessage().getHeaders(), av, sv) == null) {
        //wsa:Action header is not set in the message, so use the wsa:Action  passed as the parameter.
        hl.add(new StringHeader(av.actionTag, action, sv, mustUnderstand));
    }

    // wsa:MessageID
    if (responsePacket.getMessage().getHeaders().get(av.messageIDTag, false) == null) {
        // if header doesn't exist, method getID creates a new random id
        String newID = Message.generateMessageID();
        hl.add(new StringHeader(av.messageIDTag, newID));
    }

    // wsa:RelatesTo
    String mid = null;
    if (wpb != null) {
        mid = wpb.getMessageID();
    }
    if (mid == null) {
        mid = AddressingUtils.getMessageID(msg.getHeaders(), av, sv);
    }
    if (mid != null) {
        hl.addOrReplace(new RelatesToHeader(av.relatesToTag, mid));
    }


    // populate reference parameters
    WSEndpointReference refpEPR = null;
    if (responsePacket.getMessage().isFault()) {
        // choose FaultTo
        if (wpb != null) {
            refpEPR = wpb.getFaultToFromRequest();
        }
        if (refpEPR == null) {
            refpEPR = AddressingUtils.getFaultTo(msg.getHeaders(), av, sv);
        }
        // if FaultTo is null, then use ReplyTo
        if (refpEPR == null) {
            refpEPR = replyTo;
        }
    } else {
        // choose ReplyTo
        refpEPR = replyTo;
    }
    if (replaceToTag && refpEPR != null) {
        hl.addOrReplace(new StringHeader(av.toTag, refpEPR.getAddress()));
        refpEPR.addReferenceParametersToList(hl);
    }
}