Hey Chaps.

Any ideas why I can't consume a .Net WebService using the XMLHTTP ??

The code below doesn't work & I don't understand why as, in reality, all the WebService is returning is an XML string ??

VB Code:
  1. Dim x As New MSXML2.DOMDocument30
  2. Dim h As New MSXML2.XMLHTTP30
  3.  
  4. h.open "GET", "http://localhost/SPXTEST/Service1.asmx/HelloWorld", False
  5.  
  6. x.Load h.responseXML


I know you should consume using SOAP etc etc but I don't want the aggro....

Thanks

Chubby.