HSE_REQ_GET_CERT_INFO_EX Is Not Exposed in ISAPI ServerSupportFunction()

ID: Q221514


The information in this article applies to:
  • Microsoft Internet Information Server version 4.0


SYMPTOMS

In Microsoft Internet Information Server (IIS) 4.0, several new options have been added to the ServerSupportFunction. The ServerSupportFunction is a callback function that is supplied in the ECB (EXTENSION_CONTROL_BLOCK). It supports several auxiliary functions that are not covered by other explicit callback functions in the ECB. One of these new options is HSE_REQ_GET_CERT_INFO_EX, which returns a CERT_CONTEXT structure. This option is currently only exposed to ISAPI Extensions, so when writing an ISAPI Filter, this call may fail and may not return a CERT_CONTEXT structure as expected.


RESOLUTION

To resolve this problem, obtain the latest service pack for Windows NT 4.0 or the individual software update. For information on obtaining the latest service pack, please go to:

For information on obtaining the individual software update, contact Microsoft Product Support Services. For a complete list of Microsoft Product Support Services phone numbers and information on support costs, please go to the following address on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem was first corrected in Windows NT 4.0 Service Pack 6.


MORE INFORMATION

The following code can be used to obtain a client certificate in the ISAPI Filter:


char CertificateBuf[8192];
CERT_CONTEXT_EX ccex;
ccex.cbAllocated = sizeof(CertificateBuf);
ccex.CertContext.pbCertEncoded = (BYTE*)CertificateBuf;
DWORD dwSize = sizeof(ccex);

   if (pfc->ServerSupportFunction(pfc
 (enum SF_REQ_TYPE)HSE_REQ_GET_CERT_INFO_EX,                               
 (LPVOID)&ccex, dwSize,NULL) == FALSE)
   {
// Handle Error Here
   }
   // ccex now contains valid client certificate information. 

Additional query words: 4.00

Keywords : kbbug4.00 kbfix4.00
Version : winnt:4.0
Platform : winnt
Issue type : kbbug


Last Reviewed: October 29, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.