我已经创建了WSDL,并且想将AXIS 2用作Web服务器。

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

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

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控制台上看不到任何错误吗?

在哪里可以找到任何相关信息来解决此问题?

最佳答案

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

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

万一它被删除,下面是基思·查普曼的建议:


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


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


它不能代替您知道错误输出的去向,但可以解决当前的问题。

09-11 19:12
查看更多