Knowledge Center > Developer Documentation
ipm7Config :: GroupListDesc
GroupListDesc retrieves the ID, name and type of all the existing Group objects.
GroupListDesc(...); Parameters (c#):
GroupListDesc(...); Return (c#):
- cfgItem[]
GroupListDesc returns an array of cfgItem structures which describe all the Group objects that exist.
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/GroupListDesc"
<?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>
<GroupListDesc 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>
<GroupListDescResponse xmlns="http://schemas.ipmonitor.com/ipm70/">
<GroupListDescResult>
<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>
</GroupListDescResult>
</GroupListDescResponse>
</soap:Body>
</soap:Envelope>
< Back

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