home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / readme.txt8 < prev    next >
Text File  |  1997-10-25  |  1KB  |  37 lines

  1. FWASYNC.dll - File Transfer using Asynchronous WriteClient() inside ISAPI DLL
  2.  
  3. Overview
  4. --------
  5. FWASYNC.DLL is a sample ISAPI Extension DLL to demonstrate Asynchronous 
  6. WriteClient functionality in the ISAPI interface. This dll illustrates
  7. how one can use the WriteClient() callback in the ECB to perform an
  8. Asynchronous IO operation.
  9.  
  10. FWASYNC.dll sends the file specified on the query string. It also converts
  11. a virtual file-path (given in the URL name-space) into a physical file
  12. name using the ServerSupportFunction( HSE_REQ_MAP_URL_TO_PATH) function.
  13. The ISAPI DLL setsup the callback context and function using the 
  14. ServerSupportFunction( HSE_REQ_IO_COMPLETION) in the ECB.
  15.  
  16. Installation:
  17. -------------
  18. Build FWASYNC.dll and copy the .dll into the virtual directory maked with
  19. "execute" permissions.
  20.  
  21. To run: 
  22. -------
  23.  
  24. Reference FWASYNC.DLL file as a URL from the browser, 
  25. specifying a file-name on the query string.
  26.  
  27. For example, the following URL entered on the address line of your browser
  28. will transfer file SAMPLE.GIF, located in WWW root directory:
  29.  
  30. http://localhost/scripts/fwasync.dll?/sample.gif
  31.  
  32. Disclaimer:
  33. -----------
  34. This sample is provided for the purpose of demonstrating an ISAPI 
  35. extension. It has not been tested for use in a production environment 
  36. and no support will be provided for use in a production environment.
  37.