PHP SOAP生成正确的模式

时间:2011-03-30 20:41:17

标签: php soap soap-client

我在使用PHP创建schmea时遇到了一些麻烦。

我需要生成类似于:

的内容
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:loc="http://some-url">
    <soapenv:Header> 
        <wsse:Security xmlns:wsse="http://some-url">
            <wsse:UsernameToken wsu:Id="UsernameToken-837" xmlns:wsu="http://some-url">
                <wsse:Username>account-username</wsse:Username>
                <wsse:Password Type="http://some-url">account-password</wsse:Password>
                <wsse:Nonce>NuehdiIAyh==</wsse:Nonce>
                <wsu:Created>2009-05-07T21:41:49.765Z</wsu:Created> 
            </wsse:UsernameToken>
        </wsse:Security> 
    </soapenv:Header>
    <soapenv:Body> 
        <loc:getLocation>
            <loc:address>some-address</loc:address> 
            <loc:maximumAge> 
                <metric>Second</metric> 
                <units>100</units>
            </loc:maximumAge>
            <loc:responseTime> 
                <metric>Second</metric> 
                <units>100</units>
            </loc:responseTime>
            <loc:tolerance>LowDelay</loc:tolerance> 
        </loc:getLocation>
    </soapenv:Body> 
</soapenv:Envelope>

虽然我运气不好。我尝试了一些使用Soapvar,Soapparam的例子,任何人都知道如何通过这样做?

1 个答案:

答案 0 :(得分:1)

NuSOAP是SOAP的优秀工具包。它非常易于使用,而且支持非常好。

http://sourceforge.net/project/shownotes.php?release_id=552239

有关于如何创建SOAP Scheme的优秀文档。