jre6的webservice使用Php類庫nusoap調用的問題

來源:互聯網
上載者:User

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");

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.