TestClient.java
资源名称:MyStore.rar [点击查看]
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:
百货/超市行业
开发平台:
WINDOWS
- /*
- * Created on 1999-5-20
- */
- package webservice;
- import org.apache.axis.AxisFault;
- /**
- * @author 28-9
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Generation - Code and Comments
- */
- public class TestClient {
- public static void main(String[] args) {
- try {
- StoreAccessLocalServiceLocator service=new StoreAccessLocalServiceLocator();
- StoreAccessLocal port=service.getMyStoreLoginService();
- String userID=port.loginUser("danny", "swdandy");
- System.out.println("UserID revd is: "+userID);
- }catch(AxisFault af) {
- System.err.println("An Axis Fault occurred:"+af);
- System.out.println("AXIS exception is"+af.dumpToString());
- }catch(Exception e) {
- System.err.println("Exception caught:"+e);
- }
- }
- }