asp classic - how to register asphttp.conn component -


i need enhancements classic asp application uses asphttp.conn. trying set application on system. have dll, not sure how install , set on system. can please steps register asphttp dll on system.

did check asphttp dll documentation? http://www.serverobjects.com/comp/asphttp3.htm never mind.

answer is:

steps vary, depending on library (sorry, never used before asphttp dll) , on version of iis , of course version of operation system.

in general steps library are

step 0) find proper folder going store dll.

if dll required 1 web site (let's "web01" web site only), keep them in folder "x:\inetpub\web01\dll\"

step 1) regsvr32 yourdll.exe

if have 64 bit os , 32 bit library (dll) should run c:\windows\syswow64\regsvr32.exe.

if have 64 bit os , 64 bit library (dll) should run c:\windows\system32\regsvr32.exe.

step 2) depending on folder, store dll. if store dll in windows\systemxx folder, may should skip step. otherwise perhaps needed add read & execute permission dll file user running web site or application pool -- it's depending on iis version using , authentication way using web site. (i create separated users. so, "web01" web site user name "iusr_web01".

step 3) perhaps in iis (in iis 6.0) required add dll "web service extension" status = allowed.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -