更新SOAP 1.2故障“代码值”和“语言环境”?

时间:2016-10-06 09:41:13

标签: java soap jax-ws soapfault

我已按如下方式设置了自定义WebFault异常:

@WebFault(name="WSFault", targetNamespace = "http://www.example.com/")
public class WSException extends Exception {

    private static final long serialVersionUID = -6647544772732631047L;
    private WSFault fault;

当我在端点级别抛出自定义异常时,我得到以下错误XML:throw new WSException("1234","My Service Error");

<S:Fault xmlns:ns4="http://schemas.xmlsoap.org/soap/envelope/">
         <S:Code>
            <S:Value>S:Receiver</S:Value>
         </S:Code>
         <S:Reason>
            <S:Text xml:lang="en">My Service Error</S:Text>
         </S:Reason>
         <S:Detail>
            <ns2:WSFault xmlns:ns2="http://www.example.com/">
               <faultCode>1234</faultCode>
               <faultString>My Service Error</faultString>
            </ns2:WSFault>
         </S:Detail>
      </S:Fault>

我想控制xml:lang标记中的Text值,以允许指定发送的错误消息的语言以及代码值<S:Value>。有没有办法用@WebFault

执行此操作

1 个答案:

答案 0 :(得分:1)

我能够使用JAX-WS API对象解决此问题并创建自定义错误消息,而不仅仅是抛出异常。这样您就可以按照自己的方式访问和构建所有标记:

// Create a new SOAP 1.2 message from the message factory and obtain the SOAP body
MessageFactory factory = MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL);
SOAPMessage message = factory.createMessage();
SOAPBody soapBody = message.getSOAPPart().getEnvelope().getBody();

// get the fault
SOAPFault fault =  soapBody.addFault();

// since this is an error generated from the business application
// where SOAPValue is the standard value code "Sender|Reciever...etc"
QName faultName = new QName(SOAPConstants.URI_NS_SOAP_1_2_ENVELOPE, SOAPValue);
fault.setFaultCode(faultName);

// set the fault reason text
// where languageLocale is the passed language local, the Locale object can be used
fault.addFaultReasonText(errorMessage, languageLocale);

// generate the detail
Detail detail = fault.addDetail();

// add the error code entry
QName customCodeEntryName = new QName("http://www.example.com/", "customCode", "ns1");
DetailEntry customCodeEntry = detail.addDetailEntry(customCodeEntryName);
customCodeEntry.addTextNode("this is custom 123 code");

// throw the exception that shall generate the SOAP fault response XML message
throw new SOAPFaultException(fault);