src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/W3CWsaServerTube.java

Thu, 12 Oct 2017 19:44:07 +0800

author
aoqi
date
Thu, 12 Oct 2017 19:44:07 +0800
changeset 760
e530533619ec
parent 637
9c07ef4934dd
permissions
-rw-r--r--

merge

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation. Oracle designates this
aoqi@0 8 * particular file as subject to the "Classpath" exception as provided
aoqi@0 9 * by Oracle in the LICENSE file that accompanied this code.
aoqi@0 10 *
aoqi@0 11 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 14 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 15 * accompanied this code).
aoqi@0 16 *
aoqi@0 17 * You should have received a copy of the GNU General Public License version
aoqi@0 18 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 20 *
aoqi@0 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 22 * or visit www.oracle.com if you need additional information or have any
aoqi@0 23 * questions.
aoqi@0 24 */
aoqi@0 25
aoqi@0 26 package com.sun.xml.internal.ws.addressing;
aoqi@0 27
aoqi@0 28 import com.sun.xml.internal.ws.api.server.WSEndpoint;
aoqi@0 29 import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort;
aoqi@0 30 import com.sun.xml.internal.ws.api.model.wsdl.WSDLBoundOperation;
aoqi@0 31 import com.sun.xml.internal.ws.api.WSBinding;
aoqi@0 32 import com.sun.xml.internal.ws.api.addressing.WSEndpointReference;
aoqi@0 33 import com.sun.xml.internal.ws.api.message.Packet;
aoqi@0 34 import com.sun.xml.internal.ws.api.pipe.Tube;
aoqi@0 35 import com.sun.xml.internal.ws.api.pipe.TubeCloner;
aoqi@0 36 import com.sun.xml.internal.ws.addressing.model.MissingAddressingHeaderException;
aoqi@0 37 import com.sun.xml.internal.ws.addressing.model.InvalidAddressingHeaderException;
aoqi@0 38 import static com.sun.xml.internal.ws.addressing.W3CAddressingConstants.ONLY_NON_ANONYMOUS_ADDRESS_SUPPORTED;
aoqi@0 39 import static com.sun.xml.internal.ws.addressing.W3CAddressingConstants.ONLY_ANONYMOUS_ADDRESS_SUPPORTED;
aoqi@0 40 import com.sun.istack.internal.NotNull;
aoqi@0 41 import com.sun.istack.internal.Nullable;
aoqi@0 42
aoqi@0 43 import javax.xml.ws.soap.AddressingFeature;
aoqi@0 44
aoqi@0 45 /**
aoqi@0 46 * @author Rama Pulavarthi
aoqi@0 47 */
aoqi@0 48 public class W3CWsaServerTube extends WsaServerTube{
aoqi@0 49 private final AddressingFeature af;
aoqi@0 50
aoqi@0 51 public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) {
aoqi@0 52 super(endpoint, wsdlPort, binding, next);
aoqi@0 53 af = binding.getFeature(AddressingFeature.class);
aoqi@0 54 }
aoqi@0 55
aoqi@0 56 public W3CWsaServerTube(W3CWsaServerTube that, TubeCloner cloner) {
aoqi@0 57 super(that, cloner);
aoqi@0 58 this.af = that.af;
aoqi@0 59 }
aoqi@0 60
aoqi@0 61 @Override
aoqi@0 62 public W3CWsaServerTube copy(TubeCloner cloner) {
aoqi@0 63 return new W3CWsaServerTube(this, cloner);
aoqi@0 64 }
aoqi@0 65
aoqi@0 66 @Override
aoqi@0 67 protected void checkMandatoryHeaders(
aoqi@0 68 Packet packet, boolean foundAction, boolean foundTo, boolean foundReplyTo,
aoqi@0 69 boolean foundFaultTo, boolean foundMessageId, boolean foundRelatesTo) {
aoqi@0 70 super.checkMandatoryHeaders(packet, foundAction, foundTo, foundReplyTo,
aoqi@0 71 foundFaultTo, foundMessageId, foundRelatesTo);
aoqi@0 72
aoqi@0 73 // find Req/Response or Oneway using WSDLModel(if it is availabe)
aoqi@0 74 WSDLBoundOperation wbo = getWSDLBoundOperation(packet);
aoqi@0 75 // Taking care of protocol messages as they do not have any corresponding operations
aoqi@0 76 if (wbo != null) {
aoqi@0 77 // if two-way and no wsa:MessageID is found
aoqi@0 78 if (!wbo.getOperation().isOneWay() && !foundMessageId) {
aoqi@0 79 throw new MissingAddressingHeaderException(addressingVersion.messageIDTag,packet);
aoqi@0 80 }
aoqi@0 81 }
aoqi@0 82
aoqi@0 83 }
aoqi@0 84
aoqi@0 85 @Override
aoqi@0 86 protected boolean isAnonymousRequired(@Nullable WSDLBoundOperation wbo) {
aoqi@0 87 return getResponseRequirement(wbo) == WSDLBoundOperation.ANONYMOUS.required;
aoqi@0 88 }
aoqi@0 89
aoqi@0 90 private WSDLBoundOperation.ANONYMOUS getResponseRequirement(@Nullable WSDLBoundOperation wbo) {
aoqi@0 91 try {
aoqi@0 92 if (af.getResponses() == AddressingFeature.Responses.ANONYMOUS) {
aoqi@0 93 return WSDLBoundOperation.ANONYMOUS.required;
aoqi@0 94 } else if (af.getResponses() == AddressingFeature.Responses.NON_ANONYMOUS) {
aoqi@0 95 return WSDLBoundOperation.ANONYMOUS.prohibited;
aoqi@0 96 }
aoqi@0 97 } catch (NoSuchMethodError e) {
aoqi@0 98 //Ignore error, defaut to optional
aoqi@0 99 }
aoqi@0 100 //wsaw wsdl binding case will have some value set on wbo
aoqi@0 101 return wbo != null ? wbo.getAnonymous() : WSDLBoundOperation.ANONYMOUS.optional;
aoqi@0 102 }
aoqi@0 103
aoqi@0 104 @Override
aoqi@0 105 protected void checkAnonymousSemantics(WSDLBoundOperation wbo, WSEndpointReference replyTo, WSEndpointReference faultTo) {
aoqi@0 106 String replyToValue = null;
aoqi@0 107 String faultToValue = null;
aoqi@0 108
aoqi@0 109 if (replyTo != null)
aoqi@0 110 replyToValue = replyTo.getAddress();
aoqi@0 111
aoqi@0 112 if (faultTo != null)
aoqi@0 113 faultToValue = faultTo.getAddress();
aoqi@0 114 WSDLBoundOperation.ANONYMOUS responseRequirement = getResponseRequirement(wbo);
aoqi@0 115
aoqi@0 116 switch (responseRequirement) {
aoqi@0 117 case prohibited:
aoqi@0 118 if (replyToValue != null && replyToValue.equals(addressingVersion.anonymousUri))
aoqi@0 119 throw new InvalidAddressingHeaderException(addressingVersion.replyToTag, ONLY_NON_ANONYMOUS_ADDRESS_SUPPORTED);
aoqi@0 120
aoqi@0 121 if (faultToValue != null && faultToValue.equals(addressingVersion.anonymousUri))
aoqi@0 122 throw new InvalidAddressingHeaderException(addressingVersion.faultToTag, ONLY_NON_ANONYMOUS_ADDRESS_SUPPORTED);
aoqi@0 123 break;
aoqi@0 124 case required:
aoqi@0 125 if (replyToValue != null && !replyToValue.equals(addressingVersion.anonymousUri))
aoqi@0 126 throw new InvalidAddressingHeaderException(addressingVersion.replyToTag, ONLY_ANONYMOUS_ADDRESS_SUPPORTED);
aoqi@0 127
aoqi@0 128 if (faultToValue != null && !faultToValue.equals(addressingVersion.anonymousUri))
aoqi@0 129 throw new InvalidAddressingHeaderException(addressingVersion.faultToTag, ONLY_ANONYMOUS_ADDRESS_SUPPORTED);
aoqi@0 130 break;
aoqi@0 131 default:
aoqi@0 132 // ALL: no check
aoqi@0 133 }
aoqi@0 134 }
aoqi@0 135
aoqi@0 136 }

mercurial