Quantcast
Channel: GuruJ.net - VBA/VBScript
Viewing all articles
Browse latest Browse all 6

SharePoint Web Services query

$
0
0

This VBScript code allows you to query and post just about any information to SharePoint using web services. There are two steps involved:

  1. 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.
  2. Create a VBScript file with the following lines:

    Option Explicit
    
    Dim xmlDoc, SOAPClient
    
    ' Get the root element object
    Set SOAPClient = createobject("MSSOAP.SOAPClient")

    read more


Viewing all articles
Browse latest Browse all 6

Trending Articles