2

我有使用 JAX-WS 开发的 Web 服务。现在我想在某些条件下使用自定义错误代码抛出 SOAPFault。

我有一个网络故障:

@WebFault(name = "BankExceptionFault1_Fault", targetNamespace = NS.namespace)

公共类BankException扩展异常{

private WebMethodStatus faultInfo;


public BankException(Errors error) {
    this(error, error.name());
}

public WebMethodStatus getFaultInfo() {
    return faultInfo;
}

public BankException(Errors error, String description) {
    super(error.getErrorCode());
    this.faultInfo = new WebMethodStatus(error, description);
}

}

并且在某些方法中,对于给定的条件,抛出异常:

@Override
@WebMethod(operationName = "UpdateAccountRecord")
@WebResult(name = "Result")
@LogExecution
public WebMethodStatus updateAccountRecord(
        @WebParam(name = "Request") UpdateAccountRequest request) throws BankException {
    if (!Boolean.parseBoolean(specialMode)) {
        throw new BankException(Errors.INVALID_RUNNING_MODE,
                "Can't update account record. For updating need special running mode");
    }
    service.updateAccountRecord(request);
    return new WebMethodSuccessStatus();
}

在 spring-mvc 应用程序中,我想捕获我的异常:

try {
        wsPort.updateAccountRecord(updateAccountRequest);
    } catch (BankException e) {
        throwException(e);
    }
    catch(RemoteAccessException e){
        throwException(e);
    }

但总是返回 RemoteAccessException,如果尝试使用 sring-mvc 应用程序更新帐户。detailMessage:无法在 [http://localhost:8080/my-app-2.1.1-SNAPSHOT/app/MyApp] 访问远程服务原因:java.lang.IllegalStateException:当前事件不是 START_ELEMENT 或 END_ELEMENT

但如果我使用soapui 更新帐户,返回正确的异常:

BNK00017 无法更新账户记录。对于更新需要特殊的运行模式

4

1 回答 1

1

如果wsPort是类似注入的东西JaxWsPortProxyFactoryBean,那么您的异常很可能被RemoteAccessException. 尝试使用RemoteAccessException.getCause(),看看你得到什么......

于 2013-08-06T17:39:51.653 回答