PHP VE SABUN.

1 Cevap php

PHP ve SOAP hakkında pek çok soru olduğunu. Ama benim durumla ilgili yanıt bulundu değilim.

Yani. Bunun için PHP SoapClient ve WSDL kullanın. Nesne bu gönderir:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.site.com"><SOAP-ENV:Body>

Ama bu gerekir:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body>

Soru. Ben standart PHP sınıfı SoapClient ile bunu nasıl?

Teşekkür ederim.

1 Cevap

Ben php.net içinde cevap aramak

<?php
class MSSoapClient extends SoapClient {

    function __doRequest($request, $location, $action, $version) {
        $namespace = "http://tempuri.com";

        $request = preg_replace('/<ns1:(\w+)/', '<$1 xmlns="'.$namespace.'"', $request, 1);
        $request = preg_replace('/<ns1:(\w+)/', '<$1', $request);
        $request = str_replace(array('/ns1:', 'xmlns:ns1="'.$namespace.'"'), array('/', ''), $request);

        // parent call
        return parent::__doRequest($request, $location, $action, $version);
    }
}

$client = new MSSoapClient(...);
?>

Isteği bu kod değişikliği Zarf. Ve ASP SOAP sunucusu gerekir.