繁体   English   中英

PHP SOAP生成正确的架构

[英]PHP SOAP generating correct schema

嗨,我在使用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>

我有0运气。 我使用Soapvar,Soapparam尝试了一些示例,任何人都知道如何执行此操作?

NuSOAP是用于SOAP的出色工具包。 它非常易于使用,并且支持非常好。

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

关于如何创建SOAP方案的文档非常丰富。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM