資源描述:
《常用框架發(fā)布webservice》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在學(xué)術(shù)論文-天天文庫(kù)。
1、文檔名稱文檔密級(jí):使用Xfire、Axis、Axis2框架實(shí)現(xiàn)WebService一、用xfire發(fā)布WebService1、完成接口、實(shí)現(xiàn)類以及相關(guān)的bean代碼編寫本示例中用到的接口、實(shí)現(xiàn)類、bean如下:接口:@WebService(name="HellowWord",targetNamespace="http://webserviceDemo/schema/HelloWord/")@SOAPBinding(use=SOAPBinding.Use.LITERAL,parameterStyle=SOA
2、PBinding.ParameterStyle.WRAPPED)publicinterfaceHellowWord{@WebMethod(operationName="sayHellow",action="")publicvoidsayHellow(@WebParam(name="user",targetNamespace="")Useruser);@WebMethod(operationName="sayAllHellow",action="")publicvoidsayAllHellow(@WebPa
3、ram(name="users",targetNamespace="")Listusers);}實(shí)現(xiàn)類:@WebService(name="HellowWord",targetNamespace="http://webserviceDemo/schema/HelloWord/")publicclassHelloWordImplimplementsHellowWord{publicvoidsayAllHellow(Listusers){2021-10-4華為機(jī)密,未經(jīng)許可不得擴(kuò)散第1
4、0頁(yè),共10頁(yè)文檔名稱文檔密級(jí):if(null==users
5、
6、users.size()<=0){System.out.println("Nopeople!");}for(Useruser:users){System.out.println(user.getUserName()+"hellow!");}}publicvoidsayHellow(Useruser){if(null==user){System.out.println("Nopeople!");}System.out.println(user.
7、getUserName()+"hellow!");}}使用到的自定義bean:publicclassUser{privateStringuserName;privateintage;privateStringgender;//getset方法略}2021-10-4華為機(jī)密,未經(jīng)許可不得擴(kuò)散第10頁(yè),共10頁(yè)文檔名稱文檔密級(jí):2、導(dǎo)入Xfire相關(guān)jar包將已下載的相關(guān)xfire所有jar包導(dǎo)入工程(jar包沒(méi)有按功能區(qū)分,有興趣可以自己研究),本工程的導(dǎo)入方式為,在工程的最上層目錄下新建一個(gè)lib/xf
8、ire目錄,將相關(guān)jar包拷入該目錄,本工程是用Eclips開(kāi)發(fā)的,所以將本工程的.settings/org.eclipse.wst.common.component中添加上,最后執(zhí)行導(dǎo)入工作,這樣做有助于對(duì)工程不同功能的jar包進(jìn)行管理。3、添加xfire的配置文件配置文件添加方法一:在工程的src目錄下新建META-INFxfireservices.xml文件。配置文件添
9、加方法二:該方法可以讓工程的結(jié)構(gòu)層次更清晰,在工程的最上層目錄下新建confMETA-INFxfireservices.xml文件,然后將conf目錄下的內(nèi)容設(shè)置為編譯至WebRootWEB-INFclasses目錄下即可,其實(shí)不論配置文件放在什么地方只要工程編譯完成后,在WebRootWEB-INFclasses目錄中有META-INFxfireservices.xml即可。4、完成services.xml配置本工程配置示例:
10、F-8"?>HellWordhttp://webserviceDemo/schema/HelloWord/server.spi.HellowWord