我是nusoap和Web服务的新手。
wsdl文件来自客户端。我有一个基本的网络服务,使用默认网址,通过网址提供wsdl:http://hiddenurl.com/ws/schema/Terminal.wsdl
但是客户的文档说: “请在本地下载WSDL和XML模式文件以供您使用。请不要每次都从我们的服务器获取这些文件。”
所以我一直试图在本地或通过我自己的网络服务器托管wsdl文件,但两者都没有用。
我试过了:
$wsdlUrl = 'http://supplied-url.com/schema/Terminal.wsdl' // working but discouraged
$wsdlUrl = 'http://my-own-IIS-based-url/schema/Terminal.wsdl' // url loads and I can
// view wsdl file, but when I load run webservice is returns blank / nothing
$wsdlUrl = 'path/to/local/Terminal.wsdl' // returns blank or 'boolean'false'
$tempUrl = realpath('path/to/local/Terminal.wsdl') // get absolute url
wsdlUrl = tempUrl; // returns blank screen or 'boolean'false'
有什么方法可以让Web服务使用来自客户端最初提供的位置以外的位置的wsdl文件?我已经看到一些Web服务器的引用返回wsdl,其类型为http://getfile.php?file.wsdl,但我不明白'getfile.php'中的内容是为了通过查询字符串传递wsdl。
这是我调用Web服务的PHP代码。同样,它适用于wsdl文件的客户端提供的URL,但是当我尝试以任何其他方式访问wsdl文件时,它不会。
<?php
require_once('nusoap.php');
$URI = 'http://api.hiddenurl.com/ws/schema';
$env = 'api';
$wsdlUrl = 'http://'.$env.'.hiddenurl.com/schema/Terminal.wsdl';
$licenseKey = 'xxxx-xxxx-xxxx-xxxx-xxxx';
$userName = 'user';
$password = 'password';
$service = new nusoap_client($wsdlUrl, true);
// login credentials
$service->setHeaders(
'<wsse:Security xmlns:wsse="http://hiddenurl.xsd">'.
'<wsse:UsernameToken>'.
'<wsse:Username>'.$userName.'</wsse:Username>'.
'<wsse:Password Type="http://hiddenurl#PasswordText">'.$password.'</wsse:Password>'.
'</wsse:UsernameToken>'.
'</wsse:Security>'
);
$msg =
'<GetDetailsRequest xmlns="'.$URI .'">'.
'<messageId></messageId>'.
'<version></version>'.
'<licenseKey>'.$licenseKey.'</licenseKey>'.
'<iccids>'.
'<iccid>'.'xxxxxxxxxxxxxxx'.'</iccid>'.
'</iccids>'.
'</GetDetailsRequest>';
$result = $service->call('GetlDetails', $msg);
if ($service->fault) {
echo 'faultcode: ' . $service->faultcode . "\n";
echo 'faultstring: ' . $service->faultstring . "\n";
echo 'faultDetail: ' . $service->faultdetail . "\n";
echo 'response: ' . $service->response;
exit(0);
}
echo "<pre>";
var_dump($result);
echo "</pre>";
?>
非常感谢。
答案 0 :(得分:5)
试试这个
$wsdl_location= realpath('path/to/local/Terminal.wsdl');
$wsdl_cache = new nusoap_wsdlcache("/tmp"); // for caching purposes
$wsdl_obj = $wsdl_cache->get($wsdl_location);
if (empty($wsdl_obj)) {
$wsdl_obj=new wsdl($wsdl_location);
$wsdl_cache->put($wsdl_obj);
}
$service = new nusoap_client($wsdl_obj,true);
答案 1 :(得分:0)
尝试使用localhost路径:
$ wsdlUrl =&#39; http://localhost/schema/Terminal.wsdl&#39;;
P.S。此URL在浏览器中不起作用,但可以通过服务器上的php脚本执行。