資源描述:
《使用myeclipse創(chuàng)建webservice實(shí)例》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫(kù)。
1、使用Myeclipse8.5開(kāi)發(fā)基于JAX-WS的Webservice實(shí)例本文為Webservice開(kāi)發(fā)入門(mén)篇,主要介紹在Myeclipse8.5環(huán)境下開(kāi)發(fā)Webservice的服務(wù)程序和客戶端程序的基本流程。在Weblogic10.3.4中部署Webservice服務(wù)。開(kāi)發(fā)環(huán)境如下:JAVAIDE:Myeclipse8.5Webserver:Weblogic10.3.4開(kāi)發(fā)Webservice服務(wù)程序,需要了解以下相關(guān)內(nèi)容,WSDL,SOAP,XML。這些是組成Webservice的基礎(chǔ)。在Myeclipse8.5下開(kāi)發(fā)W
2、ebservice程序,目前系統(tǒng)支持的開(kāi)發(fā)框架有3個(gè),JAX-WS,REST(JAX-RS),XFire。其中系統(tǒng)建議不要使用XFire的框架,可能是要被淘汰了(deprecated)。我們選擇的是JAX-WS框架。這個(gè)需要JavaEE5.0的支持。所以后面選擇Webserver容器的時(shí)候,是要能支持JavaEE5.0的才可以部署成功。(一)Webservice服務(wù)端開(kāi)發(fā)1.新建一個(gè)Webserviceproject,菜單File->New->WebServiceProject,otherstaffoftheCentre.D
3、uringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederatio
4、nofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand在上面的框中輸入項(xiàng)目名myWebSvc,框架選擇JAX-WS,J2EE只能選擇JavaEE5.0。Finish完成項(xiàng)目新建。2.新建一個(gè)JavaBean,就是一個(gè)普通的Class,File–>New->Class,othe
5、rstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestO
6、fficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,DirectorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand包名輸入com.myweb.ws,類名輸入SayHello,Finish結(jié)束新建類。在類中加入一個(gè)方法sayHaha如下,packagecom.myweb.ws;publicclass
7、SayHello{publicStringsayHaha(Stringrequest){return"Haha,"+request+",O.K.!";}otherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,Se
8、cretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissi