HTML Response
When html is entered in the SetValueEx format parameter, the response will be
HTML Following are example responses.
HTML tabular response:
HTML page source:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html> <head>
<title>SetValueExResponse</title>
</head>
<body>
<h1>SetValueExResponse</h1>
<table border="1">
<tr>
<td>outcome</td>
<td>outcome-code</td>
</tr>
<tr>
<td>description</td>
<td>description-text</td>
</tr>
</table>
</body> </html>
XML Response
When xml is entered in the SetValueEx format parameter, the response will be
CSIXML with a SetValueExResponse root element name. Following is an
example response:
<SetValueExResponse outcome="outcome-code"
description="description-text"/>
JSON Response
When json is entered in the SetValueEx format parameter, the response will be
CSIJSON. Following is an example response:
{
"outcome": outcome-code,
"description": description
}
438