TestClient.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Created on 1999-5-20
  3.  */
  4. package webservice;
  5. import org.apache.axis.AxisFault;
  6. /**
  7.  * @author 28-9
  8.  *
  9.  * TODO To change the template for this generated type comment go to
  10.  * Window - Preferences - Java - Code Generation - Code and Comments
  11.  */
  12. public class TestClient {
  13. public static void main(String[] args) {
  14. try {
  15. StoreAccessLocalServiceLocator service=new StoreAccessLocalServiceLocator();
  16. StoreAccessLocal port=service.getMyStoreLoginService();
  17. String userID=port.loginUser("danny", "swdandy");
  18. System.out.println("UserID revd is: "+userID);
  19. }catch(AxisFault af) {
  20. System.err.println("An Axis Fault occurred:"+af);
  21. System.out.println("AXIS exception is"+af.dumpToString());
  22. }catch(Exception e) {
  23. System.err.println("Exception caught:"+e);
  24. }
  25. }
  26. }