我尝试使用下面url中提到的示例。但他们在这里如何构建$ wrapper感到困惑。任何人都可以告诉我如何创建包装器及其应包含的内容。 http://www.sis.utoronto.ca/web_services/code_samples.html
有人可以帮助我,因为我第一次使用wsse所以不知道如何使用它。我正在从PHP拨打肥皂到.net wsse。
请告诉我如何在此示例中传递标题。
<?php
class WSSESoapClient extends SoapClient {
protected $wsseUser;
protected $wssePassword;
public function setWSSECredentials($user, $password) {
$this->wsseUser = $user;
$this->wssePassword = $password;
}
public function __doRequest($request, $location, $action, $version, $one_way = 0) {
if (!$this->wsseUser or !$this->wssePassword) {
return parent::__doRequest($request, $location, $action, $version, $one_way = 0);
}
// get SOAP message into DOM
$dom = new DOMDocument();
$dom->loadXML($request);
$xp = new DOMXPath($dom);
$xp->registerNamespace('SOAP-ENV', 'http://schemas.xmlsoap.org/soap/envelope/');
// search for SOAP header, create one if not found
$header = $xp->query('/SOAP-ENV:Envelope/SOAP-ENV:Header')->item(0);
if (!$header) {
$header = $dom->createElementNS('http://schemas.xmlsoap.org/soap/envelope/', 'SOAP-ENV:Header');
$envelope = $xp->query('/SOAP-ENV:Envelope')->item(0);
$envelope->insertBefore($header, $xp->query('/SOAP-ENV:Envelope/SOAP-ENV:Body')->item(0));
}
// add WSSE header
$usernameToken = $dom->createElementNS('http://schemas.xmlsoap.org/ws/2002/07/secext', 'wsse:UsernameToken');
$username = $dom->createElementNS('http://schemas.xmlsoap.org/ws/2002/07/secext', 'wsse:Username', $this->wsseUser);
$password = $dom->createElementNS('http://schemas.xmlsoap.org/ws/2002/07/secext', 'wsse:Password', $this->wssePassword);
$usernameToken->appendChild($username);
$usernameToken->appendChild($password);
$header->appendChild($usernameToken);
// perform SOAP call
$request = $dom->saveXML();
return parent::__doRequest($request, $location, $action, $version, $one_way = 0);
}
} // class WSSESoapClient
$wsdl = 'Mywsdlurl';
$sClient = new WSSESoapClient ($wsdl,array( "trace" => 1 ));
$sClient->setWSSECredentials('username', 'password');
$wrapper->AccountName = new SoapVar("NEw User", XSD_STRING);
$wrapper->AccountInfo->propertyID = new SoapVar(2, XSD_STRING);
try {
$result = $sClient->CreateAccount($wrapper);
print_r($result);
} catch (SoapFault $fault) {
print("Fault string: " . $fault->faultstring . "\n");
print("Fault code: " . $fault->detail->WebServiceException->code . "\n");
}
echo $sClient->__getLastRequest();
// "<br>" .
// $sClient->__getLastResponse();
&GT;
当我检查__getLastRequest时,它没有附加_doRequest中定义的头文件;
请让我知道我在这里做错了什么。
答案 0 :(得分:0)
我在Moodle模块中使用PasswordDigest实现了UserNameToken,该模块与Skillsofts OLSA Web服务集成。
看看: http://code.google.com/p/moodle2-skillsoft-activity/source/browse/trunk/skillsoft/olsalib.php#40
这是我在PHP SoapClient周围创建一个包装器以支持使用密码摘要发送UserNameToken的地方,你可以调整它来做普通密码等等。
它有一些Moodle特定的代码,用于获取代理使用等等,以及在文件系统上“缓存”WSDL的位置(使得设置客户端的速度更快),而不是每次设置它来下拉WSDL等)
然后看看: http://code.google.com/p/moodle2-skillsoft-activity/source/browse/trunk/skillsoft/olsalib.php#483
我调用其中一个网络服务,您可以看到客户端的设置方式以及用户名/密码的传递方式。