WSSE安全性PHP SoapServer-标题不明白

时间:2017-06-17 19:23:05

标签: php soap-client soapserver

我有一个带WSSE安全标头的客户端调用:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"><wsse:UsernameToken wsu:Id="UsernameToken-7BCCD9337425FBA038149772606059420"><wsse:Username>USERNAME</wsse:Username><wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">PASSWORD</wsse:Password><wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">NONCE</wsse:Nonce><wsu:Created>2017-06-17T19:01:00.594Z</wsu:Created></wsse:UsernameToken></wsse:Security></soapenv:Header>
   <soapenv:Body>
      <ns:FUNCTION/>
   </soapenv:Body>
</soapenv:Envelope>

作为SoapServer我有一个简单的:

// the SOAP Server options
$options=array(
    'trace' => true
    , 'cache_wsdl' => 0
    , 'soap_version' => SOAP_1_1
    , 'encoding' => 'UTF-8'
);

$wsdl = 'http://localhost/index.php?wsdl';

$server = new \SoapServer($wsdl, $options);
$server->setClass('ServerClass');
$server->handle();
$response = ob_get_clean();
echo $response;

一旦属性MustUnderstand = 1,那么我就从服务器变成了异常:Header不被理解。

  1. 如何理解标题?
  2. 如何在SoapServer端进行WSSE验证?

2 个答案:

答案 0 :(得分:3)

解决方案非常棘手!我不知道为什么这样从SoapServer处理,但这是解决方案:

class ServerClass {

    public function Security($data) {
        // ... do nothing
    }

    public function myFunction(){
        // here the body function implementation
    }
}

我们需要在我们的类中定义一个函数,该函数使用头标记的名称处理soap请求,该标记包含soap:mustUnderstand属性。该功能不需要以某种方式实现。

这就是全部!

答案 1 :(得分:0)

Mutatos的问题/答案使我处在正确的轨道上。我在班级结构之外工作,因此对我有用的是:

function Security($data)
{
    $username = $data->UsernameToken->Username;
    $password = $data->UsernameToken->Password;
    //check security credentials here
}

$server = new SoapServer("schema/wsdls/FCI_BookingPullService.wsdl", array('soap_version' => SOAP_1_2));
$server->addFunction("Security");
$server->handle();

基本上,正在定义一个与SOAP头“ ”同名的函数(忽略名称空间),然后告诉服务器使用该函数通过'addFunction'方法处理头。

从范围的角度来看并不理想,如果存在问题,请尝试使用类方法。