aoqi@0: /* aoqi@0: * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. aoqi@0: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. aoqi@0: * aoqi@0: * This code is free software; you can redistribute it and/or modify it aoqi@0: * under the terms of the GNU General Public License version 2 only, as aoqi@0: * published by the Free Software Foundation. Oracle designates this aoqi@0: * particular file as subject to the "Classpath" exception as provided aoqi@0: * by Oracle in the LICENSE file that accompanied this code. aoqi@0: * aoqi@0: * This code is distributed in the hope that it will be useful, but WITHOUT aoqi@0: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or aoqi@0: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License aoqi@0: * version 2 for more details (a copy is included in the LICENSE file that aoqi@0: * accompanied this code). aoqi@0: * aoqi@0: * You should have received a copy of the GNU General Public License version aoqi@0: * 2 along with this work; if not, write to the Free Software Foundation, aoqi@0: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. aoqi@0: * aoqi@0: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA aoqi@0: * or visit www.oracle.com if you need additional information or have any aoqi@0: * questions. aoqi@0: */ aoqi@0: aoqi@0: package com.sun.xml.internal.ws.addressing.v200408; aoqi@0: aoqi@0: import com.sun.istack.internal.NotNull; aoqi@0: import com.sun.xml.internal.ws.addressing.WsaServerTube; aoqi@0: import com.sun.xml.internal.ws.addressing.model.MissingAddressingHeaderException; aoqi@0: import com.sun.xml.internal.ws.api.WSBinding; aoqi@0: import com.sun.xml.internal.ws.api.message.Packet; aoqi@0: import com.sun.xml.internal.ws.api.model.wsdl.WSDLBoundOperation; aoqi@0: import com.sun.xml.internal.ws.api.model.wsdl.WSDLPort; aoqi@0: import com.sun.xml.internal.ws.api.pipe.Tube; aoqi@0: import com.sun.xml.internal.ws.api.pipe.TubeCloner; aoqi@0: import com.sun.xml.internal.ws.api.server.WSEndpoint; aoqi@0: import com.sun.xml.internal.ws.developer.MemberSubmissionAddressing; aoqi@0: import com.sun.xml.internal.ws.developer.MemberSubmissionAddressingFeature; aoqi@0: aoqi@0: /** aoqi@0: * @author Rama Pulavarthi aoqi@0: */ aoqi@0: public class MemberSubmissionWsaServerTube extends WsaServerTube { aoqi@0: private final MemberSubmissionAddressing.Validation validation; aoqi@0: public MemberSubmissionWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { aoqi@0: super(endpoint, wsdlPort, binding, next); aoqi@0: validation = binding.getFeature(MemberSubmissionAddressingFeature.class).getValidation(); aoqi@0: } aoqi@0: aoqi@0: public MemberSubmissionWsaServerTube(MemberSubmissionWsaServerTube that, TubeCloner cloner) { aoqi@0: super(that, cloner); aoqi@0: this.validation = that.validation; aoqi@0: } aoqi@0: aoqi@0: @Override aoqi@0: public MemberSubmissionWsaServerTube copy(TubeCloner cloner) { aoqi@0: return new MemberSubmissionWsaServerTube(this, cloner); aoqi@0: } aoqi@0: aoqi@0: @Override aoqi@0: protected void checkMandatoryHeaders(Packet packet, boolean foundAction, boolean foundTo, boolean foundReplyTo, aoqi@0: boolean foundFaultTo, boolean foundMessageId, boolean foundRelatesTo) { aoqi@0: aoqi@0: super.checkMandatoryHeaders(packet, foundAction, foundTo, foundReplyTo, aoqi@0: foundFaultTo, foundMessageId, foundRelatesTo); aoqi@0: aoqi@0: // if no wsa:To header is found aoqi@0: if (!foundTo) aoqi@0: throw new MissingAddressingHeaderException(addressingVersion.toTag,packet); aoqi@0: aoqi@0: //we can find Req/Response or Oneway only with WSDLModel aoqi@0: if (wsdlPort != null) { aoqi@0: WSDLBoundOperation wbo = getWSDLBoundOperation(packet); aoqi@0: // if two-way, must contain wsa:ReplyTo aoqi@0: // Unlike W3C version, we cannot assume default value as anonymous if not present. aoqi@0: // For protocol messages, don't check as they do not have any corresponding wsdl operations aoqi@0: if (wbo != null && !wbo.getOperation().isOneWay() && !foundReplyTo) { aoqi@0: throw new MissingAddressingHeaderException(addressingVersion.replyToTag,packet); aoqi@0: } aoqi@0: } aoqi@0: if (!validation.equals(MemberSubmissionAddressing.Validation.LAX)) { aoqi@0: // wsa:MessageId is required if wsa:ReplyTo is present. aoqi@0: if ((foundReplyTo || foundFaultTo) && !foundMessageId) aoqi@0: throw new MissingAddressingHeaderException(addressingVersion.messageIDTag,packet); aoqi@0: } aoqi@0: } aoqi@0: }