com.sun.xml.ws.fault.ExceptionBean Maven / Gradle / Ivy
Show all versions of jaxws-rt Show documentation
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.fault;
import org.glassfish.jaxb.runtime.marshaller.NamespacePrefixMapper;
import com.sun.xml.ws.developer.ServerSideException;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import jakarta.xml.bind.JAXBContext;
import jakarta.xml.bind.JAXBException;
import jakarta.xml.bind.Marshaller;
import jakarta.xml.bind.PropertyException;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementWrapper;
import jakarta.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;
/**
* JAXB-bound bean that captures the exception and its call stack.
*
*
* This is used to capture the stack trace of the server side error and
* send that over to the client.
*
* @author Kohsuke Kawaguchi
*/
@XmlRootElement(namespace=ExceptionBean.NS,name=ExceptionBean.LOCAL_NAME)
final class ExceptionBean {
/**
* Converts the given {@link Throwable} into an XML representation
* and put that as a DOM tree under the given node.
*/
public static void marshal( Throwable t, Node parent ) throws JAXBException {
Marshaller m = JAXB_CONTEXT.createMarshaller();
try {
m.setProperty("org.glassfish.jaxb.runtime.namespacePrefixMapper",nsp);
} catch (PropertyException pe) {}
m.marshal(new ExceptionBean(t), parent );
}
/**
* Does the reverse operation of {@link #marshal(Throwable, Node)}. Constructs an
* {@link Exception} object from the XML.
*/
public static ServerSideException unmarshal( Node xml ) throws JAXBException {
ExceptionBean e = (ExceptionBean) JAXB_CONTEXT.createUnmarshaller().unmarshal(xml);
return e.toException();
}
@XmlAttribute(name="class")
public String className;
@XmlElement
public String message;
@XmlElementWrapper(namespace=NS,name="stackTrace")
@XmlElement(namespace=NS,name="frame")
public List stackTrace = new ArrayList<>();
@XmlElement(namespace=NS,name="cause")
public ExceptionBean cause;
// so that people noticed this fragment can turn it off
@XmlAttribute
public String note = "To disable this feature, set "+SOAPFaultBuilder.CAPTURE_STACK_TRACE_PROPERTY+" system property to false";
ExceptionBean() {// for JAXB
}
/**
* Creates an {@link ExceptionBean} tree that represents the given {@link Throwable}.
*/
private ExceptionBean(Throwable t) {
this.className = t.getClass().getName();
this.message = t.getMessage();
for (StackTraceElement f : t.getStackTrace()) {
stackTrace.add(new StackFrame(f));
}
Throwable cause = t.getCause();
if(t!=cause && cause!=null)
this.cause = new ExceptionBean(cause);
}
private ServerSideException toException() {
ServerSideException e = new ServerSideException(className,message);
if(stackTrace!=null) {
StackTraceElement[] ste = new StackTraceElement[stackTrace.size()];
for( int i=0; i=0) return String.valueOf(i);
if(i==-2) return "native";
return "unknown";
}
private int unbox(String v) {
try {
return Integer.parseInt(v);
} catch (NumberFormatException e) {
if ("native".equals(v)) {
return -2;
}
return -1;
}
}
private StackTraceElement toStackTraceElement() {
return new StackTraceElement(declaringClass,methodName,fileName,unbox(lineNumber));
}
}
/**
* Checks if the given element is the XML representation of {@link ExceptionBean}.
*/
public static boolean isStackTraceXml(Element n) {
return LOCAL_NAME.equals(n.getLocalName()) && NS.equals(n.getNamespaceURI());
}
private static final JAXBContext JAXB_CONTEXT;
/**
* Namespace URI.
*/
/*package*/ static final String NS = "http://jax-ws.dev.java.net/";
/*package*/ static final String LOCAL_NAME = "exception";
static {
try {
JAXB_CONTEXT = JAXBContext.newInstance(ExceptionBean.class);
} catch (JAXBException e) {
// this must be a bug in our code
throw new Error(e);
}
}
private static final NamespacePrefixMapper nsp = new NamespacePrefixMapper() {
@Override
public String getPreferredPrefix(String namespaceUri, String suggestion, boolean requirePrefix) {
if (NS.equals(namespaceUri)) {
return "";
}
return suggestion;
}
};
}