Hi, I have created a vb script which can pull data from a web service like this: dim SOAPClient, xmlDoc set SOAPClient = createobject("MSSOAP.SOAPClient") SOAPClient.mssoapinit("http://localhost/WebServices/Services.asmx?WSDL") set xmlDoc = SOAPClient.MyMethod("test") However I can't figure out how to find the actual values inside the xmlDoc object. What exactly is this and how can I work with it? The web service isn't designed by me but I assume it's a complex structure which is returned. Thanks in advance Morten