seguin      02/01/03 20:35:52

  Modified:    jk/native/iis isapi_install.vbs
  Log:
  update to use correct dll name (isapi_redirector.dll rather than
  isapi_redirect.dll).
  
  Revision  Changes    Path
  1.2       +4 -4      jakarta-tomcat-connectors/jk/native/iis/isapi_install.vbs
  
  Index: isapi_install.vbs
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/native/iis/isapi_install.vbs,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- isapi_install.vbs 28 Jun 2001 17:57:39 -0000      1.1
  +++ isapi_install.vbs 4 Jan 2002 04:35:52 -0000       1.2
  @@ -58,7 +58,7 @@
   ' =========================================================================
   ' Description: Install script for Tomcat ISAPI redirector                           
   
   ' Author:      Peter S. Horne <[EMAIL PROTECTED]>                           
  -' Version:     $Revision: 1.1 $                                           
  +' Version:     $Revision: 1.2 $                                           
   ' =========================================================================
   '
   ' This script automatically installs the tomcat isapi_redirector for use in
  @@ -73,7 +73,7 @@
        info ""
        info "Tomcat ISAPI Redirector Installation Utility"
        info "usage: isapi_install <server> <fdir> <worker> <mount> <log> <level>"
  -     info "  server: The Web Server Name"
  +     info "  server: The Web Server Name (for example 'Default Web Site')"
        info "  fdir:   the full path to the directory that contains the isapi filter"
        info "  worker: Full path and file name of the worker properties file"
        info "  mount:  Full path and file name of the worker mount properties file"
  @@ -88,7 +88,7 @@
   serverName = args(0)
   filterDir = args(1)
   filterName = "jakarta"
  -filterLib = "\isapi_redirect.dll"
  +filterLib = "\isapi_redirector.dll"
   workerFile = args(2)
   mountFile = args(3)
   logFile = args(4)
  @@ -202,7 +202,7 @@
   
   on error goto 0
   info "Updating Registry"
  -shell.RegWrite regRoot + "extension_uri", "/jakarta/isapi_redirect.dll"
  +shell.RegWrite regRoot + "extension_uri", "/jakarta/isapi_redirector.dll"
   shell.RegWrite regRoot + "log_file", logFile
   shell.RegWrite regRoot + "log_level", logLevel
   shell.RegWrite regRoot + "worker_file", workerFile
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to