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

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