Java Code Examples for com.sun.xml.internal.ws.api.addressing.OneWayFeature#getMessageId()

The following examples show how to use com.sun.xml.internal.ws.api.addressing.OneWayFeature#getMessageId() . 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 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 2
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 3
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 4
Source File: AddressingUtils.java    From openjdk-jdk8u-backup 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 5
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 6
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 7
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 8
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()));
        }
    }
}