![]() |
Stock Watcher
Aaron Skonnard
RequirementsThis sample requires the following software:
DescriptionThis sample will demonstrate how to use XML as the communications mechanism between a WinInet client and an ISAPI extension. It consists of the following two projects:
To begin using the sample, first you need to install the ISAPI extension into an IIS directory with execute permissions. Either compile the StockQuotes project or use the compiled DLL that comes in the project’s Debug directory. Then, create a new virtual directory with execute permissions using the Internet Services Manager (name the virtual directory StockQuotes and you won’t have to change the client program’s path configuration). Once you have the ISAPI extension copied into the appropriate IIS directory, you can begin testing the client application, StockWatcher.exe. The StockWatcher client application manages a stock symbols document using the MSXML parser. All symbols and their current information are stored as XML within the main document. To refresh the document, choose "Refresh All Symbols" from the "Symbol" menu and StockWatcher will send the XML document containing the stock symbols to the ISAPI extension (StockQuotes.dll) in order to update the current quote information (the ISAPI DLL simply returns random stock data, nothing real). StockWatcher uses WinInet to send the data to the Web server. You can configure the server name and the server path (to the ISAPI extension) using the Provider URL dialog (View | Stock Provider Settings). Again, if you named your virtual directory StockQuotes, the default settings as shown in this dialog will work fine. Otherwise, change the path to contain the name of your virtual directory as shown here: /<VIRTUAL DIRECTORY NAME>/StockQuotes.dll?GetQuotes You can either enter your machine name or the standard local loopback address (127.0.0.1) for the stock quote server name. Once StockWatcher receives the response, it updates the main document with the new XML data and refreshes its views.
The XML data that the StockWatcher client sends to the StockQuotes ISAPI extension looks like this:
And the corresponding XML data that the StockQuotes ISAPI extension sends back to the StockWatcher client looks like this:
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |