Get parameter
The method part of the request shall be set to <GetParameter>.
This method has the following input parameters.
•  <ParamName>: This is the full name of the parameter.
•  <Time>: This is the time when the value shall be read. It is only available for some parameters. Use 0 (zero) if the latest value is requested.
This is an example of the contents of the <Request> field.
<request>
  <ClientInfo>
    <cid>1</cid>
    <rid>28</rid>
  </clientInfo>
  <type>invokeMethod</type>
  <targetComponent>ParameterServer</targetComponent>
  <method>
    <GetParameter>
      <paramName>
      RemoteCommandDispatcher/ClientTimeoutLimit
      </paramName>
    <time>0</time>
    </GetParameter>
  <method>
</request>
The server application will respond with a Response message. This method has the following output parameters.
•  <ParamName>: This is the full name of the parameter.
•  <Time>: This is the time when the value was updated.
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>
  <GetParameterResponse>
    <paramValue>
      <value>60</value>
      <time>0</time>
    </paramValue>
  </GetParameterResponse>
</response>