I need to migrate a site from Windows 2000 server running IIS5 to Windows
2003 running IIS6.
The site uses extensively MSWC.Permission Checker to control what links to
show to users. The MSWC.Permission Checker that was part of IIS5 resource
kit but not available in IIS6 resource kit.
***
set oSecurity = Server.CreateOb ject("MSWC.Perm issionChecker")
If oSecurity.HasAc cess("somepath\ default.asp") Then
display link to somepath\defaul t.asp
end if
The component is documented by MS at
***
My infrastructure team refuses to install the PermChk.dll ( that provides
MSWC.Permission Checker object ) on Win2003 server for fear that this is
unsupported dll.
Any idea of what can be used for checking whether user has access to a page
or code sample so I can build my own component ( i.e. DLL)?
--
Thank you,
Andrew
2003 running IIS6.
The site uses extensively MSWC.Permission Checker to control what links to
show to users. The MSWC.Permission Checker that was part of IIS5 resource
kit but not available in IIS6 resource kit.
***
set oSecurity = Server.CreateOb ject("MSWC.Perm issionChecker")
If oSecurity.HasAc cess("somepath\ default.asp") Then
display link to somepath\defaul t.asp
end if
The component is documented by MS at
***
My infrastructure team refuses to install the PermChk.dll ( that provides
MSWC.Permission Checker object ) on Win2003 server for fear that this is
unsupported dll.
Any idea of what can be used for checking whether user has access to a page
or code sample so I can build my own component ( i.e. DLL)?
--
Thank you,
Andrew
Comment