如何解决Axis 2错误

时间:2012-01-09 02:11:15

标签: java web-services axis2

我创建了一个WSDL,我想将AXIS 2用作我的Web服务器。

我将其下载到我的C:\ axis2-1.6.1中并设置了所有必需的安装参数。

我的问题是,我将* .aar文件部署到repository / services文件夹和axis2server中 能够解压缩它,当我进入

时,我看到了我的Web服务

http://localhost:8080

当我使用SOAPUI测试我的服务时,我只会收到此错误。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Server</faultcode>
         <faultstring>unknown</faultstring>
         <detail/>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

不确定,但我在Axis控制台上没有看到任何错误?

我在哪里可以找到解决此问题的相关信息?

1 个答案:

答案 0 :(得分:5)

此链接包含一些有关配置轴以在故障消息中包含堆栈跟踪的建议:

http://www.mail-archive.com/axis-user@ws.apache.org/msg41600.html

如果它被删除,这里的Keith Chapman的建议转载:

  

尝试在axis2.xml中设置这两个参数

<parameter name="sendStacktraceDetailsWithFaults">true</parameter>
<parameter name="DrillDownToRootCauseForFaultReason">true</parameter>

它不是替代你知道你的错误输出在哪里,但它可能有助于解决当前的问题。