使用axis部署webservice

阅读更多
  1. 部署axis时把java类改成jws文件,放在Axis根目录下
  2. 用http://localhost:8080/axis 访问,verify时会缺少Activeation.jar,mail.jar,xmlsec.jar等文件,到jakata去下
  3. 使用http://localhost:8080/axis/test.jws?wsdl 测试察看wsdl文件,会自动编译产生class文件在web-inf/jwsclasses目录下
  4. 编写客户端时传参数需注意:call.invoke(c);object[] c={“1“,new Long(1)};如果这里写的不对会出现javax.xml.jaxRPCException:Number of parameters passed in(1) doesnot match she number of in/inout parameters(4) from the addparameter() calls
  5. 注意axis->web-inf->web.xml 文件是axis的配置文件,不是网站的配置文件。


你可能感兴趣的:(WebService,Web,XML,C,C++)