基于AXIS的web service:
1 比如要建一个Server.java类的web service public class Server { public String printInfo(String name){ return "Hello,"+name; } }
2 把Server.java改为Server.Jws放到 …\Tomcat 5.5\webapps\axis中,重启服务器
3 访问
4 在cmd中输入 cd D:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\axis\WEB-INF 输入命令:Java -Djava.ext.dirs=lib org.apache.axis.wsdl.WSDL2Java
5 找到…\Tomcat 5.5\webapps\axis\WEB-INF下生成的localhost文件夹复制到工程中
6 建一个Client端的类进行测试: public class Client { public static void main(String arg[]) throws ServiceException, RemoteException{ ServerService ss=new ServerServiceLocator(); Server s=ss.getServer(); System.out.println("............"+s.printInfo("shiyou")); } }