soap用戶端:php soap伺服器端 c#用戶端

來源:互聯網
上載者:User

最近寫了個php的soap伺服器
端,實現了php用戶端的調用,卻實現不了c#用戶端的調用,看完了手冊找了n久也沒實現其訪問
,最後試用了一下nusoap
sf.net上的一個開源
項目,效果
很好,很eacy就實現了所需的功能
c#的web
服務
(伺服器端)是非常容易實現的,c#用戶端調用也很方便
php的web伺服器端 一般要產生一個.wsdl的檔案
,.wsdl是一個xml檔案描述提供的服務
下面來看看我的第一個php web服務
<?php
/**
* processsimpletype method
* @param string $who name of the person we"ll say hello to
* @return string $hellotext the hello string
*/
function processsimpletype($who) {
return "hello $who,歡迎訪問 http://www.cxybl.com
";
}
?>
記得要先下載
nusoap
<?php
require_once("lib/nusoap/nusoap.php");
$namespace = "http://www.cxybl.com";
// create a new soap server
$server = new soap_server();
// configure our wsdl
$server->configurewsdl("simpleservice");
// set our namespace
$server->wsdl->schematargetnamespace = $namespace;
// register our webmethod
$server->register(
// method name:
"processsimpletype",
// parameter list:
array("name"=>"xsd:string"),
// return value(s):
array("return"=>"xsd:string"),
// namespace:
$namespace,
// soapaction: (use default)
false,
// style. rpc or document
"rpc",
// use: encoded or literal
"encoded",
// description: documentation for the method
"a simple hello world web method");
// get our posted data if the service is being consumed
// otherwise leave this data blank.
$post_data = isset($globals["http_raw_post_data"]) ? $globals["http_raw_post_data"] : "";
// pass our posted data (or nothing) to the soap service
$server->service($post_data);
exit();
?>
寫完之後就可以使用了
開啟.net,添加引用
下一步點擊wsdl ,可以看到所提供的服務,如下圖
本文連結http://www.cxybl.com/html/wlbc/Php/20120531/27134.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.