【发布时间】:2017-08-21 23:45:40
【问题描述】:
我需要建立一个 php 简单服务器和一个可以访问它的 javascript 小脚本。问题是我能找到的所有例子都不起作用。我只需要没有数据库的基本结构。只有将“hello world”字符串返回到 javascript 客户端或任何工作示例的方法(我可以从那时开始工作)。我不知道使用 Soap、nuSoap 还是 Rest 服务器哪个更好。
添加示例:
我有这个ws:
<?php
require_once('lib/nusoap.php');
class predictiveUrlsPreloadService {
public function getUrls($type) {
switch ($type) {
case 'GA':
return 'Google Analytics code';
break;
case 'AA':
return 'Adobe Analytics code';
break;
default:
break;
}
}
}
$server = new soap_server();
$server->configureWSDL("foodservice", "http://www.greenacorn-websolutions.com/foodservice");
$server->register("predictiveUrlsPreloadService.getUrls",
array("type" => "xsd:string"),
array("return" => "xsd:string"),
"http://localhost/predictiveUrlsPreloadService/service.php",
"http://localhost/predictiveUrlsPreloadService/service.php#getUrls",
"rpc",
"encoded",
"Descripci");
@$server->service(file_get_contents("php://input"));
这个 PHP 客户端正在工作:
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<?php
require_once('lib/nusoap.php');
$wsdl = "http://localhost/predictiveUrlsPreloadService/wsdl.wsdl";
$client = new nusoap_client($wsdl, true);
$error = $client->getError();
if ($error) {
print_r($error);
}
$result = $client->call("predictiveUrlsPreloadService.getUrls", array("type" => 'GA'));
if ($client->fault) {
print_r($result);
} else {
$error = $client->getError();
if ($error) {
print_r($error);
} else {
echo $result;
}
}
?>
所有这一切都与它的 wsdl。我只需要知道如何使用 javascript 或 ajax 进行调用,如下所示:
$.ajax({
url: 'http://localhost/predictiveUrlsPreloadService/service.php',
type: "predictiveUrlsPreloadService.getUrls",
data: {
'type' : 'AA'
},
success: function (response) {
console.dir(response);
}
});
但它只返回 ws 信息。我该怎么做?
【问题讨论】:
-
如果您找到示例但它们不起作用,请让它们起作用。如果他们做的比你想要的多,请简化它们。
-
当然可以,但是我创建的示例只有服务器端并且不知道它们是否有效,因为我不知道如何构建客户端。
标签: javascript php ajax web-services soap