學習筆記,每一天我們都在進步。
2007/03/29 21:49
除了最后两个发布文件以外最重要的有两个文件,即MobileBossSoapBindingImpl.java和MobileBossServiceLocator.java

MobileBossSoapBindingImpl代码如下:

java 代码

1.   java 代码

/**  

2.           * MobileBossSoapBindingImpl.java  

3.           *  

4.           * This file was auto-generated from WSDL  

5.           * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.  

6.           */  

7.            

8.          package com.yy.ws;  

9.            

10.       public class MobileBossSoapBindingImpl implements com.yy.ws.MobileBoss{  

11.           public com.yy.ws.ServerResponse charge(com.yy.ws.ClientRequest in0) throws java.rmi.RemoteException {  

12.               return null;  

13.           }  

14.        

15.       }  

我们需要在这个webservice中实现自己的业务方法!我们加入如下业务代码:

java 代码

1.          /**  

2.           * MobileBossSoapBindingImpl.java  

3.           *  

4.           * This file was auto-generated from WSDL  

5.           * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.  

6.           */  

7.            

8.          package com.yy.ws;  

9.            

10.       public class MobileBossSoapBindingImpl implements com.yy.ws.MobileBoss {  

11.        

12.           /*  

13.            *  

14.            * implements the service methods  

15.            */  

16.           public com.yy.ws.ServerResponse charge(com.yy.ws.ClientRequest req)  

17.                   throws java.rmi.RemoteException {  

18.               String bizInfo = req.getPhoneNumber() + "/" + req.getOpType() + "/"  

19.                       + req.getAmount();  

20.               System.out.println(bizInfo);  

21.               System.out.println(req.getPhoneNumber() + "is charged successfully!");  

22.               ServerResponse res = new ServerResponse();  

23.               res.setMessage(bizInfo);// save service informations.  

24.               res.setResultCode(8888);// save result code.  

25.               return res;  

26.           }  

27.        

28.       }  

发表评论
表情
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
emotemotemotemotemot
打开HTML
打开UBB
打开表情
隐藏
记住我
昵称   密码   游客无需密码
网址   电邮   [注册]