Where's the best place to report problems in WSE?
Using Reflector, I've confirmed what appears to be a bug in the WSE 2.0
Configuration Editor when running under Windows 2000. When defining a
new security policy in the Security Settings wizard, it is impossible
to select an X.509 certificate. Clicking on the "Select Certificate"
button ultimately results in a call to StoreDialog.GetSelectedCertHandle,
whose pseudocode looks like this:
if (IsWinXP())
{
call cryptui.dll:CryptUIDlgSelectCertificateFromStore
}
else
{
return null
}
ie For Windows 2000, nothing happens.
If the same code were to call StoreDialog.SelectCertificate instead
of GetSelectedCertHandle, I believe it would fix the problem. The
offending code is in X509CertSelector.SelectCertificate.
Frankly, I'm not sure what the purpose of the GetSelectedCertHandle
function is, given its overlap with SelectCertificate and its failure
to do anything under W2K.
This problem has been reported at least once in this newsgroup, at
http://tinyurl.com/ywzf5
--
Curt Hagenlocher
curt@hagenlocher.org
Lucien - 21 Jun 2004 16:50 GMT
Thanks Curt, I'll file the issue and let someone investigate.
Lucien
> Where's the best place to report problems in WSE?
>
[quoted text clipped - 30 lines]
> Curt Hagenlocher
> curt@hagenlocher.org