Call a Web Service Asynchronously

One advantage of calling a web service directly, rather than through proxies, is that it is very easy to handle the response asynchronously. The DOMDocument object provides an ondataavailable event that occurs when the object is finished loading XML from a source. This means that you can launch a web service request, release control to the user, and display results when a request is complete. Being able to handle a response asynchronously is especially important when the web service is returning a large amount of data.

How to do it

To use the DOMDocument object to respond to a web service asynchronously, follow these steps:

  1. Declare a DOMDocument object at the module of a class. The class can be a workbook, worksheet, or code class module. For example, the following variable is declared in the wsAmazon worksheet class:

    	                       Dim WithEvents xdoc As DOMDocument
  2. Select the xdoc object from the object list at the top of the code window, and then select ondataavailable from the event list to create an empty event procedure as shown here:

       Private Sub xdoc_ondataavailable(  )
    
       End Sub
  3. In other code, initialize the xdoc object, set its async property to True, and then call the web service using the xdoc object’s Load method. For example, the following event procedure searches Amazon.com for a keyword when the user clicks the Get Titles button on the wsAmazon worksheet:

       Sub cmdTitles_Click(  )
         Dim SearchUrl As String
         ' Create a new DOMDocument and set its options
         Set xdoc = New DOMDocument
         xdoc.async = True
    	
         ' Create the search request
         SearchUrl = "http://xml.amazon.com/onca/xml2" & _
                  "?t=" & "webservices-20" & _
                  "&dev-t=" & "D1UCR04XBIF4A6" & _
                  "&page=1" & _
                  "&f=xml" & _
                  "&mode=books" & _
                  "&type=lite" & _
                  "&KeywordSearch=" & txtSearch.Text
    
         ' Issue the request and wait for it to be honored
         Loaded = xdoc.Load(SearchUrl)
       End Sub
  4. Add code to the ondataavailable event procedure to respond to the web service data once it is returned. For example, the following code imports the result through an XML map and displays it in a list:

       Private Sub xdoc_ondataavailable(  )
         Dim wb As Workbook
         ' Import the results through an XML Map into a list.
          Set wb = ThisWorkbook
          wb.XmlImportXml xdoc.XML, wb.XmlMaps("ProductInfo_Map"), True
       End Sub

How it works

When you run the preceding code by clicking on the Get Titles button, Excel returns control to the user as soon as the click is done. The list is updated once the web service responds.

The Microsoft SOAP type library does not support asynchronous calls, so you can’t use web services that only provide a SOAP interface asynchronously from Excel. The SOAP tools available with .NET do support asynchronous calls, however, so if you are programming with Visual Basic .NET outside of Excel, you can make asynchronous SOAP calls.

What about...

To learn aboutLook here

The SOAP Toolkit

Search http://www.microsoft.com/downloads (for “SOAP Toolkit 3.0”)

Creating .NET components for use in Excel

Chapter 5, “Programming Excel with .NET”

Get Excel 2003 Programming: A Developer's Notebook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.