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

  1. CTETEST.DLL is a sample ISAPI HTTP Extension DLL to demonstrate Chunked 
  2. Transfer Encoding. The Chunked Transfer Encoding modifies the body of a 
  3. message in order to transfer it as a series of chunks, each with its own 
  4. size indicator. Unlike "normal" HTTP file transfer, Chunked Transfer 
  5. does not need to specify (or even know) the transfer length in advance. 
  6. There is no "Content-Length:" header transferred. For complete details 
  7. about Chunked Transfer Encoding, see section 3.6 "Transfer Codings" of 
  8. the latest HTTP/1.1 specifications, available from 
  9. http://www.w3.org/Protocols.
  10.  
  11.  
  12. CTETEST.DLL sends the file specified on the query string. If no query 
  13. string is present, or if the query string does not identify a readable 
  14. file, CTETEST.DLL will return a plain text page describing its usage.
  15.  
  16. To install: 
  17.  
  18. Build the CTETEST.DSP project and copy the .DLL into virtual directory 
  19. with "execute" permissions.
  20.  
  21. To run: 
  22.  
  23. Reference CTETEST.DLL file as a URL from the browser (currently only 
  24. Microsoft Internet Explorer version 4.xx supports chunked encoding), 
  25. specifying a URL on the query string.
  26.  
  27. For example, the following URL entered on the address line of Internet 
  28. Explorer will transfer file SAMPLE.GIF, located in WWW root directory, 
  29. encoded in 1024-byte chunks:
  30.  
  31. http://localhost/scripts/ctetest.dll?file=/sample.gif+chunksize=1024 
  32.  
  33.  
  34. Disclaimer:
  35.  
  36. This sample is provided for the purpose of demonstrating an ISAPI 
  37. extension. It has not been tested for use in a production environment 
  38. and no support will be provided for use in a production environment.
  39.  
  40.