本文主要是介绍tr069实战报文之SetParameterValues请求报文,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SetParameterValues请求报文:<soap:Envelope soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:cwmp="urn:dslforum-org:cwmp-1-0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soap:Header>
<cwmp:ID soap:mustUnderstand="1">22</cwmp:ID>
</soap:Header> <soap:Body>
<cwmp:SetParameterValues>
<ParameterList soapenc:arrayType="cwmp:ParameterValueStruct[1]">
<ParameterValueStruct>
<Name xsi:type="xsd:string">InternetGatewayDevice.DeviceInfo.X_CT-COM_TeleComAccount.UserAccount.3.Password</Name>
<Value xsi:type="xsd:string">useradmin</Value>
</ParameterValueStruct>
</ParameterList>
<ParameterKey xsi:type="xsd:string">SetPValues1885</ParameterKey>
</cwmp:SetParameterValues>
</soap:Body>
</soap:Envelope>
SetParameterValues请求回应报文:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:cwmp="urn:dslforum-org:cwmp-1-0">
<SOAP-ENV:Header>
<cwmp:ID SOAP-ENV:mustUnderstand="1">22</cwmp:ID>
</SOAP-ENV:Header>
<SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<cwmp:SetParameterValuesResponse>
<Status>0</Status>
</cwmp:SetParameterValuesResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
这篇关于tr069实战报文之SetParameterValues请求报文的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!