我正在创建一个NuSoap服务器来接受以下XML客户端请求并做出响应:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:syncR xmlns:ns1="http://www.csapi.org/schema/parlayx/data/sync/v1_0/local">
<ns1:updateType>1</ns1:updateType>
<ns1:updateDesc>Addition</ns1:updateDesc>
<item>
<key>shortMessage</key>
<value>Hello world.</value>
</item>
</ns1:syncR>
</soapenv:Body>
</soapenv:Envelope>
key - shortMessage
value - Hello world