So, the problem you are describing here is that SiteMinder is incompatible
with any other authentication methods.
First, you need to make sure that SiteMinder is completely unable to work
with any standard authentication method on IIS.
If the SiteMinder ISAPI sets incorrect credentials in its OnAuthentication
event, returns "handled", and IIS is set to require authentication, then you
have no alternatives since SiteMinder is quite intentionally getting in your
way of implementing any workaround.
In the above scenario, if you set IIS to not require authentication (i.e.
only anonymous authentication is enabled), you can work around SiteMinder by
using a customized version of the CustomAuth sample ISAPI from the IIS
Platform SDK to set the Windows account impersonated by IIS for the request
(i.e. roughly the same thing that you can do with Basic+OnAuthentication in
an ISAPI Filter, except it requires anonymous authentication to work).
<a style='text-decoration: underline;' href="http://www.microsoft.com/msdownload/platformsdk/sdkupdate/default.htm" target="_blank">http://www.microsoft.com/msdownload/platformsdk/sdkupdate/default.htm</a>
--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"ORi" <ori.DeleteThis@bbs-ce.uab.es> wrote in message
news:73b37c5e.0410060635.29f3d6b3@posting.google.com...
Yep, that's more less what I'm actually trying to do. I validate a
given credentials with Netegrity, then I enable Basic Authentication
on the site. When trying to access the site, the login popup appears
and I enter the login information with a valid windows account, it
seems that after that, on the OnAuthentication event the SiteMinder
ISAPIWebManager filter resets the entered login information and after
doing the request, the login popup appears again because it can't
login with SiteMinder updated info. So the behaviour is that when I
enable Basic Authentication and SiteMinder on the site, I can't pass
the login popup for Basic Authentication.
The server runs IIS 6.0
thx in advance,
ori
"David Wang [Msft]" <someone.DeleteThis@online.microsoft.com> wrote in message
news:<ORhucC2qEHA.3848.DeleteThis@TK2MSFTNGP14.phx.gbl>...
> What do you actually want to do, and what IIS version are we talking
about.
>
> It sounds like you have an identity whose credentials you first verify
with
> Netegrity. If it succeeds, then you want to map that identity to a
Windows
> account so that Sharepoint works.<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: ISAPI problem OnAuthentication