时间:2021-07-01 10:21:17 帮助过:24人阅读
asp.net调用
view plain
=================================
参考:
使用NuSOAP结合WSDL来编程 类别:PHP 评论:0 浏览:513 发表时间:2009-09-10 16:59:38 From:http://www.scottnichol.com/nusoapprogwsdl.htm
Hello, World Redux
The New Client
Defining New Data Structures
WSDL 文件为 service 提供了 metadata,NuSOAP 允许程序员指定使用 soap_server 类的附加字段和方法的 service 创建的 WSDL。
Service 的代码必须依照产生的正确的 WSDL 的顺序做很多事情。service 的信息通过调用 configureWSDL 方法来指定,每个方法的信息也通过提供 register 方法的附加参数来指定,使用 WSDL 的 service 代码在下面的实例中演示:
// Pull in the NuSOAP code
require_once('nusoap.php');
// Create the server instance
$server = new soap_server();
// Initialize WSDL support
$server->configureWSDL('hellowsdl', 'urn:hellowsdl');
// Register the method to expose
$server->register('hello', // method name