gpt4 book ai didi

php - 使用 NuSOAP 帮助 Web 服务

转载 作者:可可西里 更新时间:2023-10-31 23:11:24 24 4
gpt4 key购买 nike

我正在尝试在 PHP 中使用 NuSOAP 做一个示例 Web 服务,我构建了这个示例类:

<?php
// Pull in the NuSOAP code
require_once('lib/nusoap.php');
// Create the server instance
$server = new soap_server;
// Register the method to expose
$server->register('hello');
// Define the method as a PHP function
function hello($name) {
return 'Hello, ' . $name;
}
// Use the request to (try to) invoke the service
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
?>

和客户端的这个类:

<?php
// Pull in the NuSOAP code
require_once('lib/nusoap.php');
// Create the client instance
$client = new soapclient('http://localhost/webServiceResta.php');
// Call the SOAP method
$result = $client->call('hello', array('name' => 'Scott'));
// Display the result
print_r($result);
?>

但是当我运行脚本时,我似乎遇到了这个错误:

Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://localhost/webServiceResta.php' : Start tag expected, '<' not found in /opt/lampp/htdocs/prueba.php:5 Stack trace: #0 /opt/lampp/htdocs/prueba.php(5): SoapClient->SoapClient('http://localhos...') #1 {main} thrown in /opt/lampp/htdocs/prueba.php on line 5

我在 ubuntu 上使用 XAMPP,所有文件都在正确的位置。

最佳答案

使用 NuSoap 所以你需要调用 nusoap_client :)

$client = new nusoap_client('http://localhost/webServiceResta.php');

关于php - 使用 NuSOAP 帮助 Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4210964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com