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

  1. FTRANS.dll - File Transfer using Asynchronous TransmitFile() inside ISAPI DLL
  2.  
  3. Overview
  4. --------
  5. FTRANS.DLL is a sample ISAPI Extension DLL to demonstrate Asynchronous 
  6. TransmitFile functionality in the ISAPI interface. This dll illustrates
  7. how one can use the ServerSupportFunction( HSE_REQ_TRANSMIT_FILE) option
  8. to transmit an entire file from inside the ISAPI DLL. 
  9.  
  10. FTRANS.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.  
  14. Installation:
  15. -------------
  16. Build FTRANS.dll and copy the .dll into the virtual directory maked with
  17. "execute" permissions.
  18.  
  19. To run: 
  20. -------
  21.  
  22. Reference FTRANS.DLL file as a URL from the browser, 
  23. specifying a file-name on the query string.
  24.  
  25. For example, the following URL entered on the address line of your browser
  26. will transfer file SAMPLE.GIF, located in WWW root directory:
  27.  
  28. http://localhost/scripts/ftrans.dll?/sample.gif
  29.  
  30. Disclaimer:
  31. -----------
  32. This sample is provided for the purpose of demonstrating an ISAPI 
  33. extension. It has not been tested for use in a production environment 
  34. and no support will be provided for use in a production environment.
  35.  
  36.