OS WebService的Soap請求沒法獲取參數的解決方法

本文只針對本人本身碰到的WebService服務器web

以前參照網上普遍使用的soap頭,在鏈接以CXF搭建的WebService碰到沒法解析參數的狀況服務器

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getOffesetUTCTime(方法名) xmlns="http://www.Nanonull.com/TimeService/(命名空間)」>
<hoursOffset(參數名)>GTM+8</hoursOffset>
</getOffesetUTCTime>
</soap:Body>
</soap:Envelope>spa


修改爲以下的soap請求頭就正常獲取orm

<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="webservice命名空間">
    <soap:Body>
        <ns1:方法名>
            <參數名1>參數值1</參數名1>
            <參數名2>參數值2</參數名2>
        </ns1:方法名>
    </soap:Body>
</soap:Envelope>xml

相關文章
相關標籤/搜索