使用瀏覽器位址列呼叫CXF Webservice的寫法

劍握在手發表於2016-07-26

/*
* 通過url呼叫
* http://localhost:8080/EFP/webService/TestWebservice/testOut/arg0/liuyx
*/

 

http://localhost:8080/EFP/webService/TestWebservice/testOut/arg0/liuyx

其中:
http://localhost:8080/EFP/webService/TestWebservice?wsdl是webservice的地址

testOut是要呼叫的方法名

arg0代表其後邊的liuyx是第一個引數,如果有更多的引數,在地址後邊追加即可——寫法如下

【/arg1/xxx/arg2/yyy】

 

訪問應該結果是個xml。

 

相關文章