Craig, There are several other things to do for a successful install of the CosignModule, of course, but since you asked specifically about where to put the files, I'm only going over that part in detail.
Here is a run-down of what each command-line item is doing: The first couple commands are only necessary if you are removing an earlier version of the CosignModule. Replace "Default Web Site" with the actual name of the web site. If the CosignModule was added to multiple web sites, it will have to be removed from each one. It's possible "appcmd.exe" is not in your %PATH%. If it is not, either add it or type the entire path of the binary. The default location is c: \windows\system32\inetsrv\appcmd.exe appcmd delete module "Cosign" /app.name:"Default Web Site/" appcmd uninstall module "Cosign" iisreset The next two commands copy the necessary files to the proper locations, assuming your %SYSTEMDRIVE% is C:\. copy /Y Cosign_Schema.xml C:\Windows\System32\inetsrv\config\schema copy /Y CosignModule.dll C:\Windows\System32\inetsrv The first command makes the CosignModule available to the web sites on the server, the second command actually adds the module to a particular web site. appcmd install module /name:"Cosign" /image:"CosignModule.dll" / add:"false" appcmd add module /name:"Cosign" /app.name:"Default Web Site/" All of the appcmd actions can be done from within the IIS Manager. You will need to register the module at the 'global' level before adding the CosignModule in each web site's "Modules" section. For extra fun, you can also edit the applicationHost.config file directly and forego the appcmd and IIS Manager. Jarod On Jul 15, 2009, at 10:16 AM, Farrell, Craig wrote: > I have a new Windows 2008 server with a SSL certificate installed. I > downloaded the 3.0.0 beta 1 cosign module. I was going over the > readme file but I’m still unclear on how to proceed on installing > it. I have the cosign 2.X filter installed on a Windows 2003 server > so I have worked with the filter. > > What directory do you create on the server for the module? What > files do you place where? > > Do you install the module via IIS Manager or use the command line as > described in the readme. > > Any assistance would be helpful. > > > Craig Farrell > Assistant Director of Information Technology > Penn State Altoona > 3000 Ivyside Park > Altoona PA 16601 > > > ------------------------------------------------------------------------------ > Enter the BlackBerry Developer Challenge > This is your chance to win up to $100,000 in prizes! For a limited > time, > vendors submitting new applications to BlackBerry App World(TM) will > have > the opportunity to enter the BlackBerry Developer Challenge. See > full prize > details at: > http://p.sf.net/sfu/Challenge_______________________________________________ > Cosign-discuss mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/cosign-discuss ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Cosign-discuss mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cosign-discuss
