?? PHPERPHP技術(shù)交流 網(wǎng)絡(luò)應(yīng)用開發(fā)首頁博客留言個人中心登錄注冊關(guān)于 PHP的SOAP工具包--nusoap
什么是SOAPSOAP:簡單對象訪問協(xié)議,簡單對象訪問協(xié)議(SOAP)是一種輕量的、簡單的、基于 XML 的協(xié)議,它被設(shè)計成在 WEB 上交換結(jié)構(gòu)化的和固化的信息。
NuSOAP 是一組功能強(qiáng)大的PHP類,使得使用和創(chuàng)建SOAP消息變得相當(dāng)簡單。NuSOAP由Dirtrich Ayala編寫,可以無縫地與很多最流行的SOAP服務(wù)實現(xiàn)交互,它遵循LGPL發(fā)布。NuSOAP提供了很多令人印象深刻的特性,包括:
●簡單 :NuSOAP的面向?qū)ο蠓椒[藏了SOAP消息組裝、解析、提交和接收的有關(guān)細(xì)節(jié),使用戶集中于應(yīng)用程序本身。
●WSDL生成和導(dǎo)入 :NuSOAP可以生成一個對應(yīng)于所發(fā)布Web服務(wù)的WSDL文檔,并且能導(dǎo)入一個WSDL引用在NuSOAP客戶端使用。
●代理類 :NuSOAP可以生成的一個代理類,允許調(diào)用遠(yuǎn)程方法,如同調(diào)用本地方法一樣。
●HTTP代理 :出于多種原因(安全性和審計是其中兩個原因),有些客戶端被強(qiáng)制將請求委托給HTTP代理,由代理代表客戶端執(zhí)行請求。也就是說,需要所有SOAP請求都傳遞給此代理,而不是直接查詢服務(wù)器。NuSOAP為指定代理服務(wù)器提供了基本支持。
●SSL :如果可以通過PHP使用CURL擴(kuò)展,NuSOAP還支持通過SSL的安全通信。
?soap要求PHP5.0以上版本,且php默認(rèn)是不加載soap模塊的。解決方法是在php.ini中的Dynamic Extensions里添加:extension=php_soap.dll,如果原來有這一條,只是被注釋掉了,那么只要把前邊的分號去掉就可以了。
注:nusoap可以兼容PHP4和PHP5。
SOAP相關(guān)基礎(chǔ)知識?1.wsdl(web服務(wù)標(biāo)記語言)
WSDL(網(wǎng)絡(luò)服務(wù)描述語言,Web Services Description Language)是一門基于 XML 的語言,用于描述 Web Services 以及如何對它們進(jìn)行訪問。
具體參考請訪問下面網(wǎng)址 http://www.w3school.com.cn/wsdl/index.asp
2.soap
SOAP 是一種簡單的基于 XML 的協(xié)議,它使應(yīng)用程序通過 HTTP 來交換信息。
具體參考請訪問下面網(wǎng)址 http://www.w3school.com.cn/soap/index.asp
3.php擴(kuò)展
具體參考請訪問下面網(wǎng)址 http://php.net/manual/en/book.soap.php
天氣預(yù)報接口調(diào)用:
$client?=?new?nusoap_client('http://www.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl',?'wsdl'); $client->soap_defencoding?=?'utf-8'; $client->decode_utf8?=?false; $client->xml_encoding?=?'utf-8'; $param?=?array('theUserID'=>'',?'theCityCode'=>$city); $result?=?$client->call('getWeather',?$param); if(!$client->fault?AND?!$client->getError()) { print_r($result); }常用WEB SERVICE
天氣預(yù)報Web Service ,數(shù)據(jù)來源于中國氣象局
Endpoint : http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl
IP地址來源搜索Web Service (是目前最完整的IP地址數(shù)據(jù))
Endpoint : http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?wsdl
隨機(jī)英文、數(shù)字和中文簡體字Web Service
Endpoint : http://www.webxml.com.cn/WebServices/RandomFontsWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/RandomFontsWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/RandomFontsWebService.asmx?wsdl
中國郵政編碼
驗證碼圖片Web Service 支持中文、字母、數(shù)字 圖像和多媒體
Endpoint : http://www.webxml.com.cn/WebServices/ValidateCodeWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/ValidateCodeWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ValidateCodeWebService.asmx?wsdl
Email 電子郵件地址驗證Web Service
Endpoint : http://www.webxml.com.cn/WebServices/ValidateEmailWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/ValidateEmailWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ValidateEmailWebService.asmx?wsdl
中文簡體字
中文
火車時刻表Web Service (第六次提速最新列車時刻表)
Endpoint : http://www.webxml.com.cn/WebServices/TrainTimeWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/TrainTimeWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/TrainTimeWebService.asmx?wsdl
中國股票行情數(shù)據(jù)Web Service (支持深圳和上海股市的基金、債券和股票)
Endpoint : http://www.webxml.com.cn/WebServices/ChinaStockWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/ChinaStockWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ChinaStockWebService.asmx?wsdl
即時外匯匯率數(shù)據(jù)Web Service
Endpoint : http://www.webxml.com.cn/WebServices/ExchangeRateWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/ExchangeRateWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ExchangeRateWebService.asmx?wsdl
騰訊QQ在線狀態(tài)Web Service
Endpoint : http://www.webxml.com.cn/webservices/qqOnlineWebService.asmx
Disco : http://www.webxml.com.cn/webservices/qqOnlineWebService.asmx?disco
WSDL : http://www.webxml.com.cn/webservices/qqOnlineWebService.asmx?wsdl
中國電視節(jié)目預(yù)告 (電視節(jié)目表)Web Service
Endpoint : http://www.webxml.com.cn/webservices/ChinaTVprogramWebService.asmx
Disco : http://www.webxml.com.cn/webservices/ChinaTVprogramWebService.asmx?disco
WSDL : http://www.webxml.com.cn/webservices/ChinaTVprogramWebService.asmx?wsdl
外匯-人民幣即時報價Web Service
Endpoint : http://www.webxml.com.cn/WebServices/ForexRmbRateWebService.asmx
Disco : http://www.webxml.com.cn/WebServices/ForexRmbRateWebService.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ForexRmbRateWebService.asmx?wsdl
中國股票行情分時走勢預(yù)覽縮略圖Web Service
Endpoint : http://www.webxml.com.cn/webservices/ChinaStockSmallImageWS.asmx
Disco : http://www.webxml.com.cn/webservices/ChinaStockSmallImageWS.asmx?disco
WSDL : http://www.webxml.com.cn/webservices/ChinaStockSmallImageWS.asmx?wsdl
國內(nèi)飛機(jī)航班時刻表 Web Service
Endpoint : http://www.webxml.com.cn/webservices/DomesticAirline.asmx
Disco : http://www.webxml.com.cn/webservices/DomesticAirline.asmx?disco
WSDL : http://www.webxml.com.cn/webservices/DomesticAirline.asmx?wsdl
中國開放式基金數(shù)據(jù)Web Service
Endpoint : http://www.webxml.com.cn/WebServices/ChinaOpenFundWS.asmx
Disco : http://www.webxml.com.cn/WebServices/ChinaOpenFundWS.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/ChinaOpenFundWS.asmx?wsdl
股票行情數(shù)據(jù) Web Service (支持香港、深圳、上?;?、債券和股票;支持多股票同時查詢)
Endpoint : http://www.webxml.com.cn/WebServices/StockInfoWS.asmx
Disco : http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?disco
WSDL : http://www.webxml.com.cn/WebServices/StockInfoWS.asmx?wsdl
?
www.phper.org.cn ?2014 ? 贛ICP備09008620號
聲明留言關(guān)于