/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.xml.ws.fault; import com.sun.xml.ws.api.SOAPVersion; import com.sun.xml.ws.util.DOMUtil; import org.w3c.dom.Element; import org.w3c.dom.Node; import javax.xml.bind.annotation.*; import javax.xml.namespace.QName; import javax.xml.soap.Detail; import javax.xml.soap.SOAPException; import javax.xml.soap.SOAPFault; import javax.xml.ws.WebServiceException; import java.util.Iterator; /** * This class represents SOAP1.1 Fault. This class will be used to marshall/unmarshall a soap fault using JAXB. * <p/> * <pre> * Example: * <p/> * <soap:Fault xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> * <faultcode>soap:Client</faultcode> * <faultstring>Invalid message format</faultstring> * <faultactor>http://example.org/someactor</faultactor> * <detail> * <m:msg xmlns:m='http://example.org/faults/exceptions'> * Test message * </m:msg> * </detail> * </soap:Fault> * <p/> * Above, m:msg, if a known fault (described in the WSDL), IOW, if m:msg is known by JAXBContext it should be unmarshalled into a * Java object otherwise it should be deserialized as {@link javax.xml.soap.Detail} * </pre> * <p/> * * @author Vivek Pandey */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "faultcode", "faultstring", "faultactor", "detail" }) @XmlRootElement(name = "Fault", namespace = "http://schemas.xmlsoap.org/soap/envelope/") class SOAP11Fault extends SOAPFaultBuilder { @XmlElement(namespace = "") private QName faultcode; @XmlElement(namespace = "") private String faultstring; @XmlElement(namespace = "") private String faultactor; @XmlElement(namespace = "") private DetailType detail; SOAP11Fault() { } /** * This constructor takes soap fault detail among other things. The detail could represent {@link javax.xml.soap.Detail} * or a java object that can be marshalled/unmarshalled by JAXB. * * @param code * @param reason * @param actor * @param detailObject */ SOAP11Fault(QName code, String reason, String actor, Element detailObject) { this.faultcode = code; this.faultstring = reason; this.faultactor = actor; if (detailObject != null) { if ((detailObject.getNamespaceURI() == null || "".equals(detailObject.getNamespaceURI())) && "detail".equals(detailObject.getLocalName())) { detail = new DetailType(); for(Element detailEntry : DOMUtil.getChildElements(detailObject)) { detail.getDetails().add(detailEntry); } } else { detail = new DetailType(detailObject); } } } SOAP11Fault(SOAPFault fault) { this.faultcode = fault.getFaultCodeAsQName(); this.faultstring = fault.getFaultString(); this.faultactor = fault.getFaultActor(); if (fault.getDetail() != null) { detail = new DetailType(); Iterator iter = fault.getDetail().getDetailEntries(); while(iter.hasNext()){ Element fd = (Element)iter.next(); detail.getDetails().add(fd); } } } QName getFaultcode() { return faultcode; } void setFaultcode(QName faultcode) { this.faultcode = faultcode; } @Override String getFaultString() { return faultstring; } void setFaultstring(String faultstring) { this.faultstring = faultstring; } String getFaultactor() { return faultactor; } void setFaultactor(String faultactor) { this.faultactor = faultactor; } /** * returns the object that represents detail. */ @Override DetailType getDetail() { return detail; } void setDetail(DetailType detail) { this.detail = detail; } protected Throwable getProtocolException() { try { SOAPFault fault = SOAPVersion.SOAP_11.getSOAPFactory().createFault(faultstring, faultcode); fault.setFaultActor(faultactor); if(detail != null){ Detail d = fault.addDetail(); for(Element det : detail.getDetails()){ Node n = fault.getOwnerDocument().importNode(det, true); d.appendChild(n); } } return new ServerSOAPFaultException(fault); } catch (SOAPException e) { throw new WebServiceException(e); } } }