Hi I'm making a call to the following method:

POST /ccmmwebservices/CISkillSetWs.asmx HTTP/1.1
Host: 10.85.0.113
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://webservices.ci.ccmm.applications.nortel.com/GetAllOutboundSkillsets"

<?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>
<GetAllOutboundSkillsets xmlns="http://webservices.ci.ccmm.applications.nortel.com">
<sessionKey>string</sessionKey>
</GetAllOutboundSkillsets>
</soap:Body>
</soap:Envelope>

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>
<GetAllOutboundSkillsetsResponse xmlns="http://webservices.ci.ccmm.applications.nortel.com">
<GetAllOutboundSkillsetsResult>
<skillsetList xmlns="http://datatypes.ci.ccmm.applications.nortel.com">
<CISkillsetReadType>
<id>long</id>
<name>string</name>
</CISkillsetReadType>
<CISkillsetReadType>
<id>long</id>
<name>string</name>
</CISkillsetReadType>
</skillsetList>
</GetAllOutboundSkillsetsResult>
</GetAllOutboundSkillsetsResponse>
</soap:Body>
</soap:Envelope>

The output of the resquest is a list of items with each item containing an ID and a name:

I would like to now how to print the contents of that list into my aspx page or a listbox.

Thanks in advance,
Alex