GetAuditData function
Retrieves information about the audit process.
WSDL operation
<wsdl:operation name="GetAuditData">
<wsdl:documentation/>
<soap:operation soapAction="GetAuditData" style="document"/>
<wsdl:input>
<soap:body parts="inargs" use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body parts="outargs" use="literal"/>
</wsdl:output>
<wsdl:fault name="AtriumFault">
<soap:fault name="AtriumFault" use="literal"/>
</wsdl:fault>
</wsdl:operation>
WSDL messages
<message name="GetAuditDataRequest">
<part element="types:GetAuditData" name="inargs"/>
</message>
<message name="GetAuditDataResponse">
<part element="types:GetAuditDataOutput" name="outargs"/>
</message>
<message name="AtriumFault">
<part element="common:AtriumFault" name="errargs"/>
</message>
XSD schema
<element name="GetAuditData">
<complexType>
<sequence>
<element name="loginInfo" nillable="true"
type="common:LoginInfo" />
<element name="classNameId" type="common:ClassNameId" />
<element name="instanceId" type="string" />
<element name="query" nillable="true" type="string" />
<element name="extensions" nillable="true"
type="common:ExtensionList" />
</sequence>
</complexType>
</element>
<element name="GetAuditDataOutput">
<complexType>
<sequence>
<element name="auditValueListList"
type="tns:AuditValueListList" />
<element name="status" type="common:StatusList" />
<element name="extensions" nillable="true"
type="common:ExtensionList" />
</sequence>
</complexType>
</element>
Input arguments
loginInfo | User ID, passwords, domain and other information necessary to log on to the application. See LoginInfo. |
classNameId | The name of the class. It is a two-part structure that contains the namespace name and the class name. See ClassNameId. |
instanceId | The ID of the instance. The unique identifier for the new attribute. An integer value that specifies the class ID of the UI component class. |
query | A qualification that determines the set of instances to retrieve. The qualification can include one or more attributes and any combination of conditional, relational, and arithmetic operations. |
extensions | A list of extension types for the operation. See ExtensionList. |
Return value
auditValueListList | Holds the retrieved list of audit values. |
status | A list of zero or more notes, warnings, or errors generated from a call of this operation. |
extensions | A list of extension types for the operation. |
Fault message
Fault message | See Fault message. |
Comments