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

  1. Description:
  2.  
  3. InvokObj is a sample ISAPI extension to demonstrate invoking
  4. a method from an ActiveX Automation Server.  Included with the
  5. project is an automation dll, GetUserName.dll.  This is a simple
  6. ATL-based component with a single method, GetMyName(), which
  7. returns the user name for the context in which the component is
  8. running.  The InvokObj sample demonstrates creating an instance
  9. of the object from within and ISAPI extension, invoking the
  10. GetMyName() method, and returning the information to the browser. 
  11.  
  12. This sample uses Microsoft specific compiler extensions included
  13. with Microsoft Visual C++, and requires version 5.0 of the compiler
  14. or later.
  15.  
  16. To Install:
  17.  
  18. Build the InvokObj.dsw project and copy the resulting InvokObj.dll
  19. file into a virtual directory containing execute permissions.
  20.  
  21. Register GetUserName.dll with the following command line.  If you
  22. do not do this, the browser will report error 800401f3:
  23.  
  24.    regsvr32 getusername.dll
  25.  
  26. To Run:
  27.  
  28. Reference the InvokObj.dll file as a URL from a browser.  For
  29. example, the following URL entered on the address line of
  30. Internet Explorer will demonstrate the dll:
  31.  
  32.    http://server/scripts/invokobj.dll
  33.  
  34. Disclaimer:
  35.  
  36. This sample, and the included automation dll, is provided for the
  37. purposes of demonstrating an ISAPI extension.  It has not been
  38. tested for use in a production environment and no support will
  39. be provided for use in a production environment.