jre6.0加入了對WebService的支援,不用再用開源類庫了。
看看這樣一段代碼:
@WebService(name="TestWS",serviceName="TestWS")public class TestWS {/** * 測試相加方法 * @param x * @param y * @return */@WebMethodpublic int TestMethod(int x,int y){return x + y;}}
/** * @author v.xieping * */public class Program {/** * @param args */public static void main(String[] args) {Endpoint.publish( "http://192.168.53.43:8090/CSEventWS/TestWS", new TestWS());ThreadWaitor.keepWait();}}
這樣使用
http://192.168.53.43:8090/CSEventWS/TestWS
這個地址就可以訪問到這個WebService。
但是有個奇怪的問題是,我是一nusoap類庫不能像以前一樣調用成功。經實驗發現三個問題。
1、WSDL問題
不過使用地址http://192.168.53.43:8090/CSEventWS/TestWS
還是地址
http://192.168.53.43:8090/CSEventWS/TestWS?wsdl
在建立nusoap對象時,都不能認為他是wsdl。也就是說這兩個地址都是非wsdl的。
2、命名空間問題
大家都知道一般開發中,使用的命名空間都是“http://tempuri.org/”,但是在這裡不是,而變成了http://ws.csevent/。
可以使用 http://192.168.53.43:8090/CSEventWS/TestWS?wsdl
這樣的地址查看 <definitions targetNamespace="http://ws.csevent/" name="TestWS">
3、參數問題
一般WSDL地址的參數是和名字相關的。但是這裡不是,而要用
$params = array('arg0' => 100,'arg1' => 200);
這種方式定義。
可以通過http://192.168.53.43:8090/CSEventWS/TestWS?wsdl查看
<types>−<xsd:schema><xsd:import namespace="http://ws.csevent/" schemaLocation="http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1"/></xsd:schema></types><types>
−<xsd:schema>
<xsd:import namespace="http://ws.csevent/"
schemaLocation="http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1"/>
</xsd:schema>
</types>
再繼續開啟http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1 就可以看到用的參數名字。
<xs:complexType name="TestMethod">
−
<xs:sequence>
<xs:element name="arg0" type="xs:int"/>
<xs:element name="arg1" type="xs:int"/>
</xs:sequence>
</xs:complexType>
最終調用為:
注意:以下代碼是使用的slightphp架構。實現了對nusoap的初級封裝。
$objSoap = new HTTP_SOAP();
$client = $objSoap->getClient($this->url,false);
$params = array('arg0' => 100,'arg1' => 200);
$r = $client->call('TestMethod',$params ,'http://ws.csevent/','',false,true);
Debug_Util::log($r,"service.log");