Is the .dll in the /bin folder? Or, otherwise, where is the assembly? Cheers Ken
From: [email protected] [mailto:[email protected]] On Behalf Of Greg Keogh Sent: Tuesday, 23 July 2013 9:06 AM To: ozDotNet Subject: Managed IIS Module installation Folks, I've written a class that implements IHttpModule<http://msdn.microsoft.com/en-us/library/vstudio/system.web.ihttpmodule(v=vs.100).aspx> to do some custom logging in IIS 7.5. Now I have to install the thing. I found instructions to run this command: appcmd install module /name:MyLogger /type:MyNamespace.MyClass Of course this isn't enough, because nowhere have I specified which DLL contains this class and this naturally causes IIS to crash with "could not load type". There must be a missing step, and I just can't find it. Has anyone been through these steps and got it working? Greg K
