This VBScript code allows you to query and post just about any information to SharePoint using web services. There are two steps involved:
- Check the signature of the Web Service you want to invoke. For example, http://sharepoint/_vti_bin/Lists.asmx will give a list of all operations you can perform on SharePoint lists.
- Create a VBScript file with the following lines:
Option Explicit Dim xmlDoc, SOAPClient ' Get the root element object Set SOAPClient = createobject("MSSOAP.SOAPClient")