PHP5 SABUN birden fazla ad üretebilir miyim?

0 Cevap php

Ben aşağıdaki biçimi gerektiren bir PHP SOAP isteği göndermek çalışıyorum:

<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
                   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                   xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
                xmlns:NS2="urn:ISmartPoints1">
        <NS1:UpdateCustomer xmlns:NS1="urn:SmartPointsIntf-ISmartPoints">
            <svID xsi:type="xsd:string">...</svID>
            <CTCustNo xsi:type="xsd:string">...</CTCustNo>
            <aWebCustomerResult href="#1"/>
        </NS1:UpdateCustomer>
        <NS2:TWebCustomerResult id="1" xsi:type="NS2:TWebCustomerResult">
            ...
        </NS2:TWebCustomerResult>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Ben "NS2" ad alanı oluşturmak yapamaz oldum, ve hatta mümkünse merak ediyorum. PHP kılavuzu (en azından ben buldum değil) bunun için herhangi bir başvuru yapmaz, ve ben buldum tek çözüm NuSOAP kullanır.

0 Cevap