說明:
• 非標准的webservice,可能只能PHP才能訪問
• 標准的webservice,就必須要使用wsdl
在這裡我只介紹標准的webservice www.2cto.com
一、 創建WSDL
1。網上下載SoapDiscovery.class.php類
2。修改SoapDiscovery.class.php的公共方法getWsdl(),讓其自動生成wsdl文件(注意存放路徑),這裡只是創建一個wsdl模型
1 //return sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '</definitions>');
2 //生成wsdl文件,將上面的return注釋
3 $fso = fopen($this->class_name . ".wsdl" , "w");
4 fwrite($fso, sprintf('%s%s%s%s%s%s', $headerWSDL, $portTypeWSDL, $bindingWSDL, $serviceWSDL, $messageWSDL, '</definitions>'));
5 exit;
3。提供服務的類或者函數
1 //比如我有個類:person,文件名為:person.class.php★,裡面有兩個方法,一個是say,一個是run。很簡單。
2 <?php
3 class person
4 {
5 public function say()
6 {
7 return("i'm speaking.");
8 }
9 public function run()
10 {
11 return("i'm running,don't disturb me please.");
12 }
13 }
14 ?>
4。開始正式生成wsdl:
創建文件server.php。將以下內容拷貝進去,運行即可生成一個person.wsdl文件
1 <?php
2 include("person.class.php");
3 include("SoapDiscovery.class.php");
4 //第一個參數是類名(生成的wsdl文件就是以它來命名的),即person類,第二個參數是服務的名字(這個可以隨便寫)。
5 $disco = new SoapDiscovery('person','Person');
6 $disco->getWSDL();
7 ?>
5。創建webservice服務端程序
將server.php文件的內容清空,復制以下代碼進去:
1 <?php
2 include("person.class.php");
3 $objSoapServer = new SoapServer("person.wsdl");//person.wsdl是剛創建的wsdl文件
4 //$objSoapServer = new SoapServer("server.php?wsdl");//這樣也行
5 $objSoapServer->setClass("person");//注冊person類的所有方法
6 $objSoapServer->handle();//處理請求
7 ?>
6。創建webservice客戶端程序,測試webservice是否有效,文件名是:client.php
<?php
$client = new SoapClient("person.wsdl");
//$client = new SoapClient("server.php?wsdl");//這樣也行
echo($client->say());
echo "<br />";
echo($client->run());
echo "<br />";
?>
7。.NET如果要使用的話,你只要提供一個url給他就行了。
獲得url的方法:你可以先到person.wsdl文件裡面查找<soap:address location="http://xxxxxxxxxxxxxxxxxxxx/server.php" />,這裡的url(具體url是根據你的目錄確定的)就是你要提供給.NET開發人員使用的。不過別高興太早,後面要加:“?wsdl”,http://xxxxxxxxxxxxxxxxxxxx/server.php?wsdl這樣才是對的,不信你可以將url拷貝到浏覽器的地址欄裡看下就知道了。
.NET開發人員獲得你給他的url之後,就可以在自己的項目裡面添加一個服務引用或者web引用了,然後就可以根據提示完成相關操作,對於使用.NET的開發人員來說很簡單的。
(1)創建一網站,創建一個web引用,輸入url
(2)實力調用
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
sdaf.Solsoft_HelloWorld ddd = new sdaf.Solsoft_HelloWorld();
Label1.Text = ddd.say();
}
}
附件下載:http://www.BkJia.com/uploadfile/2011/1208/20111208050034814.rar
2011-12-07 21:37:56
作者 暗淡