这是我的deploy.wsdd代码
<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="BankServer" provider="java:RPC">
<parameter name="className" value="BankServer"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>

解决方案 »

  1.   

    我好像找到了错误的所在,如下所说,但还是不太明白,请高手指点我应该如何做
    If you get some AxisFault listing, then the client is working, but the deployment was unsuccessful. This is where the knowledge of the sockets API to TCP and the basics of the HTTP that Web Service development requires begins to be needed. If you got some socket error like connection refused, well, clearly the thing at the far end isnt talking to you, so find the cause of that fix it. If you get any Http error code back, well, you know what the error codes mean, right? If you are going to develop Web Services -you need to.