Knowledge Center > Developer Documentation
ipm7Config :: ReportListDesc
ReportListDesc retrieves the ID, name and type of all the existing Report objects.
ReportListDesc(...); Parameters (c#):
ReportListDesc(...); Return (c#):
- cfgItem[]
ReportListDesc returns an array of cfgItem structures that describe all the existing Report objects.
SOAP / HTTP Details (Invoke):
POST /soap/config.asmx HTTP/1.1
Host: youripm7addr
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://schemas.ipmonitor.com/ipm70/ReportListDesc"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ReportListDesc xmlns="http://schemas.ipmonitor.com/ipm70/" />
</soap:Body>
</soap:Envelope>
SOAP / HTTP Details (Return):
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ReportListDescResponse xmlns="http://schemas.ipmonitor.com/ipm70/">
<ReportListDescResult>
<cfgItem>
<ID>long</ID>
<name>string</name>
<type>long</type>
<typedesc>string</typedesc>
</cfgItem>
<cfgItem>
<ID>long</ID>
<name>string</name>
<type>long</type>
<typedesc>string</typedesc>
</cfgItem>
</ReportListDescResult>
</ReportListDescResponse>
</soap:Body>
</soap:Envelope>
< Back

Last Updated: March 30, 2004 | What did you think of this topic?