Set parameter
The method part of the request shall be set to <SetParameter>.
This method has the following input parameters.
•  <ParamName>: This is the full name of the parameter.
•  <paramValue>: This is the new value that will be used to update the parameter.
•  <paramType>: The data variant type of the <paramValue> field.
This is an example of the contents of the <Request> field. The ping interval is set to 1000 ms, and the data variant type is VT_I4 (4-byte integer).
<request>
  <ClientInfo>
    <cid>1</cid>
    <rid>28</rid>
  </clientInfo>
  <type>invokeMethod</type>
  <targetComponent>ParameterServer</targetComponent>
   
 
  <method>
    <SetParameter>
      <paramName>
      AcousticDeviceSynchroniser/Interval
      </paramName>
      <paramValue>1000</paramValue>
      <paramType>3</paramType>
    </SetParameter>
  <method>
</request>
The server application will respond with a Response message. This method has no output parameters. This is an example of the contents of the <Response> field.
<response>
  <ClientInfo>
    <cid dt="3">1</cid>
    <rid dt="3">28</rid>
  </clientInfo>
  <fault>
    <detail>
      <errorcode dt="3">0</errorcode>
      <errorcode1 dt="3">0</errorcode1>
      <message dt="8"></message>
    </detail>
  </fault>
</response>