axis开发webservices
对webservices蒙了一天,研究了使用axis来开发webservices的过程,做记录。 我使用的工具:myeclipse7 , axis1.4, tomcat6 1、新建一个web工程,把axis的jar复制到web工程的lib文件夹下面。 2、新建一个java类,还是最简单。 package server; public class SayHello { public String sayName() { return "hello"; } } 3、在web-info下面新建文件server-config.wsdd 填充配置信息 <?xml version="1.0" encoding="UTF-8"?> <deployment name="de...
Read More
