Microsoft ISA Server - Filter - Converting from Visual Studio 2005 to Visual Studio 2008 gives error

We have a filter for Microsoft ISA Server 2006 written in C ++. The code was originally compiled using Visual Studio 2005 and hunky dory. Since we are using Visual Studio 2008 for everything else, I tried to convert this project to Visual Studio 2008. The conversion wizard works fine and the code compiles correctly.

However, when I try to deploy the output dll to the server I get the following error

ISA Server was unable to load Web filter library "C: \ Program Files \ Microsoft ISA Server".

To expand

  • I have not registered the original dll with regsvr32 \ u
  • Registered new dll using regsvr32
  • Start the Windows Firewall service.

I suspect the error is related to Visual Studio 2008's handling of DLL COM files. Has anyone seen this error before.

Cheers, Hamid

-

0


a source to share


2 answers


This may be due to the fact that you need to deploy newer versions of VS 2008 C. Here is the link for the SP1 (x86) version .



0


a source


commands for filter installation on ISA Server


net stop fwsrv regsvr32.exec

net start fwsrv



commands to remove filter from ISA Server


net stop fwsrv regsvr32.exe / u / i net start fwsrv

0


a source







All Articles