apache axis2 web服务在在线服务器上不起作用!

时间:2011-07-28 16:37:25

标签: java web-services apache axis2

我使用apache axis2和eclipse开发了一个Web服务,它由以下方法组成:

String getStatus()
Stock[] getStocksList(String username, String password)
Collection<AdviserMsg> getMsgsFromTseTmc()
AdviserMsg[] getMsgList(String username, String password)

服务在本地服务器上工作正常但是当我在服务器上传它们时出现了这个奇怪的问题,第一个只返回一个字符串的方法(getStatus())工作正常,但其他方法却没有!我得到这个结果作为回应:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
- <soapenv:Body>
- <soapenv:Fault>
  <faultcode>soapenv:Server</faultcode> 
  <faultstring>Exception occurred while trying to invoke service method getMsgList</faultstring> 
  <detail /> 
  </soapenv:Fault>
  </soapenv:Body>
  </soapenv:Envelope>

有必要提一下,这个确切的项目在几天前工作正常,突然间它决定让我对着办公室里所有可能的墙壁。 我也将项目上传到另一台服务器上,结果是一样的。

有什么想法吗?

0 个答案:

没有答案