作为自定义异常抛出的字符串在SOAPUI中显得很奇怪?

时间:2015-10-15 19:43:36

标签: java exception java-ee exception-handling soapui

我正在尝试在SOAP UI中抛出自定义异常。例如,

throw new CustomException(String message, FaultObject faultObject);

理想情况下,我需要消息和fault对象作为soap fault出现在SOAPUI中。也就是说,我想要定义为自定义错误的消息(如下面的!CDATA之后所示)及其中的所有参数。但是,当我抛出自定义异常时,我得到以下响应。有关如何更正故障消息的任何建议。在我的wsdl中,我定义了错误消息,并且我抛出了从存根生成的相同错误消息。任何建议将不胜感激。如果您需要更多信息,请告诉我。

 xml:lang="en"><![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="yes"?><ns2:CustomFault xmlns:ns2="http:test" xmlns="http:test1"><ns2:Message>Number='',Version='',Message='Invalid Data'</ns2:Message><ns2:Errors><ns2:Error><ns2:ErrorSource>dd</ns2:ErrorSource><ns2:ErrorNumber>12</ns2:ErrorNumber><ns2:ErrorCode>2501</ns2:ErrorCode><ns2:ErrorMessage>Date failed</ns2:ErrorMessage></ns2:Error></ns2:Errors></ns2:CustomFault>]]>

0 个答案:

没有答案