gpt4 book ai didi

java - Apache CXF 中获取 Exception_Exception 中的服务器堆栈跟踪的问题

转载 作者:太空宇宙 更新时间:2023-11-04 07:56:59 26 4
gpt4 key购买 nike

我已经实现了 Apache CXF WebService 并尝试通过 Swings 应用程序访问 WebService。我面临的问题是 CXF 在客户端从 WSDL 创建了一个名为 Exception_Exception 的类。当服务器端发生异常时,客户端 Exception_Exception 会被调用,但我在 Exception_Exception 堆栈跟踪中没有收到服务器的相同堆栈跟踪。下面是CXF生成的类:

package com.abc.it.vcare.service;

import javax.xml.ws.WebFault;


/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2-hudson-752-
* Generated source version: 2.2
*
*/
@WebFault(name = "Exception", targetNamespace = "http://service.vcare.it.abc.com/")
public class Exception_Exception
extends java.lang.Exception
{

/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private com.axiom.it.vcare.service.Exception faultInfo;

/**
*
* @param message
* @param faultInfo
*/
public Exception_Exception(String message, com.axiom.it.vcare.service.Exception faultInfo) {
super(message);
this.faultInfo = faultInfo;
}

/**
*
* @param message
* @param faultInfo
* @param cause
*/
public Exception_Exception(String message, com.axiom.it.vcare.service.Exception faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}

/**
*
* @return
* returns fault bean: com.axiom.it.vcare.service.Exception
*/
public com.axiom.it.vcare.service.Exception getFaultInfo() {
return faultInfo;
}

}

请帮忙,我应该怎么做才能在客户端 Exception_Exception 中获得服务器异常中给出的相同 StackTrace。

谢谢,贾伊·G.

最佳答案

您使用的是哪个版本的 CXF?这是一个古老的 CXF 问题,已在最新版本中得到解决。尝试使用 CXF 2.7.0 版本,应该可以解决问题。

关于java - Apache CXF 中获取 Exception_Exception 中的服务器堆栈跟踪的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13468270/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com