SOAP başlığında yöntem imzası nedir?

1 Cevap php

Ben Zend Framework kullanarak aşağıdaki SOAP isteği taklit etmek istiyorum ama ben başlığındaki '__MethodSignature' kısmını anlamak yok. Birisi bu açıklayabilir misiniz?

<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Header>
        <h3:__MethodSignature xsi:type="SOAP-ENC:methodSignature"
        xmlns:h3="http://schemas.microsoft.com/clr/soap/messageProperties"
        SOAP-ENC:root="1">
            xsd:string
        </h3:__MethodSignature>
    </SOAP-ENV:Header>

    <SOAP-ENV:Body>
    <i4:ReturnDataset id="ref-1"
        xmlns:i4="http://schemas.microsoft.com/clr/nsassem/Interface.IReturnDataSet/Interface">
            <tName id="ref-5">BU</tName>
        </i4:ReturnDataset>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

: Ben bu böyle ReturnDataSet function çağırdığınızda

$client = new Zend_Soap_Client($wsdl_url, array('soap_version' => SOAP_1_1));
$tName = "BU";
$result = $client->ReturnDataset($tName);

Sunucu bir hata atar. Ben bu başlık kısmı bazı rol oynuyor düşünüyorsun?

1 Cevap

MethodSignature veya __ MethodSignature soap üstbilgisi ayarlamayı deneyin. Aşağıdaki gibi normal bir PHP SOAP istemcisi sayesinde, bunu:

$client->__setSoapHeaders(new SoapHeader(
    'http://schemas.microsoft.com/clr/soap/messageProperties',
    '__MethodSignature',
    'xsd:string'
));