001: /*
002: * The contents of this file are subject to the terms
003: * of the Common Development and Distribution License
004: * (the "License"). You may not use this file except
005: * in compliance with the License.
006: *
007: * You can obtain a copy of the license at
008: * https://jwsdp.dev.java.net/CDDLv1.0.html
009: * See the License for the specific language governing
010: * permissions and limitations under the License.
011: *
012: * When distributing Covered Code, include this CDDL
013: * HEADER in each file and include the License file at
014: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
015: * add the following below this CDDL HEADER, with the
016: * fields enclosed by brackets "[]" replaced with your
017: * own identifying information: Portions Copyright [yyyy]
018: * [name of copyright owner]
019: */
020: /*
021: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
022: *
023: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
024: *
025: * The contents of this file are subject to the terms of either the GNU
026: * General Public License Version 2 only ("GPL") or the Common Development
027: * and Distribution License("CDDL") (collectively, the "License"). You
028: * may not use this file except in compliance with the License. You can obtain
029: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
030: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
031: * language governing permissions and limitations under the License.
032: *
033: * When distributing the software, include this License Header Notice in each
034: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
035: * Sun designates this particular file as subject to the "Classpath" exception
036: * as provided by Sun in the GPL Version 2 section of the License file that
037: * accompanied this code. If applicable, add the following below the License
038: * Header, with the fields enclosed by brackets [] replaced by your own
039: * identifying information: "Portions Copyrighted [year]
040: * [name of copyright owner]"
041: *
042: * Contributor(s):
043: *
044: * If you wish your version of this file to be governed by only the CDDL or
045: * only the GPL Version 2, indicate your decision by adding "[Contributor]
046: * elects to include this software in this distribution under the [CDDL or GPL
047: * Version 2] license." If you don't indicate a single choice of license, a
048: * recipient has the option to distribute your version of this file under
049: * either the CDDL, the GPL Version 2 or to extend the choice of license to
050: * its licensees as provided above. However, if you add GPL Version 2 code
051: * and therefore, elected the GPL Version 2 license, then the option applies
052: * only if the new code is made subject to such option by the copyright
053: * holder.
054: */
055:
056: package com.sun.xml.messaging.soap;
057:
058: import java.util.Iterator;
059: import javax.xml.soap.*;
060:
061: public class SOAPProcessorImpl extends SOAPProcessor {
062:
063: private String ultimateReceiverURL = "http://schemas.xmlsoap.org/soap/actor/ultimateReceiver";
064:
065: /**
066: * Implementation for SOAP 1.1
067: */
068: public SOAPMessage acceptMessage(SOAPMessage message)
069: throws SOAPException {
070:
071: SOAPHeader header = message.getSOAPHeader();
072: Iterator headerElements = header.getChildElements();
073: for (; headerElements.hasNext();) {
074: SOAPHeaderElement elem = (SOAPHeaderElement) headerElements
075: .next();
076: String role = getRoleAttributeValue(elem);
077: boolean elementProcessed = false;
078: boolean isTargeted = false;
079: for (Iterator itr = recipients.iterator(); itr.hasNext();) {
080: SOAPRecipient recp = (SOAPRecipient) itr.next();
081: if (recp.supportsRole(role)) {
082: isTargeted = true;
083: if (recp.supportsHeader(elem.getTagName())) {
084: recp.processHeaderElement(elem);
085: elementProcessed = true;
086: }
087: }
088: }
089: if (!elementProcessed && isTargeted
090: && elem.getMustUnderstand()) {
091: // Generate FAULT
092: generateFault(message, role);
093: }
094: if (isTargeted && !role.equals(ultimateReceiverURL))
095: elem.detachNode();
096: }
097: message.saveChanges();
098: return message;
099: }
100:
101: public SOAPMessage prepareMessage(SOAPMessage message)
102: throws SOAPException {
103:
104: SOAPHeader header = message.getSOAPHeader();
105: for (Iterator it = annotators.iterator(); it.hasNext();) {
106: SOAPAnnotator annotator = (SOAPAnnotator) it.next();
107: annotator.annotateHeader(header);
108: }
109: message.saveChanges();
110: return message;
111: }
112:
113: /**
114: * Implementation for SOAP 1.1
115: * recognize both actor and role attributes ?
116: */
117: protected String getRoleAttributeValue(SOAPHeaderElement element) {
118: String ret = element.getActor();
119: // set it to ultimateReceiver ?
120: if (ret.equals("") || ret == null)
121: ret = ultimateReceiverURL;
122: return ret;
123: }
124:
125: private void generateFault(SOAPMessage message, String role)
126: throws SOAPException {
127: SOAPBody body = message.getSOAPBody();
128: Iterator eachChild = body.getChildElements();
129: while (eachChild.hasNext()) {
130: SOAPBodyElement bodyElement = (SOAPBodyElement) eachChild
131: .next();
132: bodyElement.detachNode();
133: }
134:
135: SOAPFault fault = body.addFault();
136: String soapPrefix = body.getPrefix();
137: fault.setFaultCode(soapPrefix + ":" + "mustUnderstand");
138: fault.setFaultString("One or more mandatory SOAPHeader blocks "
139: + "not understood");
140: fault.setFaultActor(role);
141: }
142: }
|