Josh Gross | I dont know if this helps you but the raw request would look like: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.cisco.com/AXL/API/8.5"> <soapenv:Header/> <soapenv:Body> <ns:listPresenceGroup sequence="?"> <searchCriteria> <name>Standard Presence group</name> </searchCriteria> <returnedTags uuid="?"> <name>?</name> <description>?</description> </returnedTags> </ns:listPresenceGroup> </soapenv:Body> </soapenv:Envelope>
the response looks like: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <ns:listPresenceGroupResponse xmlns:ns="http://www.cisco.com/AXL/API/8.5"> <return> <presenceGroup uuid="{AD243D17-98B4-4118-8FEB-5FF2E1B781AC}"> <name>Standard Presence group</name> <description>Standard Presence group</description> </presenceGroup> </return> </ns:listPresenceGroupResponse> </soapenv:Body> </soapenv:Envelope> Im not familiar with the code you posted but maybe your returnedTags should be ('name','description') |
| Please sign in to flag this as inappropriate. |