Hello. I am trying to call a web method from a web service from an asp web page which returns an xml node list. I use MSSOAP.SOAPClient30. When I execute "result = objWS.myFunc()", result is a an array of object, which is actually an array of xml nodes. I can't convert this object to anything and access any properties of it, however, i can iterate through the object with "For i = 0 To UBound(result) ... Next". Is there any solution to this. I can't use ASP.NET or any other platform, I have to use ASP. Thanks.