Sintomas
Considere o seguinte cenário:
-
O serviço de função Inscrição Na Web dos Serviços de Certificado está instalado num Windows baseado no Server 2008 R2.
-
Tem um computador cliente a executar o Internet Explorer 10 ou uma versão posterior.
-
Ao tentar aceder à página Inscrição Web dos Serviços de Certificado que está alonhada no servidor baseado no Windows Server 2008 R2.
Neste cenário, é recebido o seguinte erro no Internet Explorer:
Este browser não suporta a geração de pedidos de certificado
Causa
A verificação da Versão do Browser identifica incorretamente a versão do Internet Explorer como "IE 1".
Solução
As sões suportadas para este problema são as seguintes:
-
Configurar a vista de compatibilidade no Internet Explorer.
-
Mova a funcionalidade da página Inscrição Web para Windows Server 2012.
-
Modifique o ficheiro Certsbrt.inc ao substituir as linhas 44 a 70 pelos seguintes conteúdos. Certsbrt.inc está localizado na seguinte pasta:
%WINDIR%\system32\certsrv\pt-PT
'
' If there is no '.' in the UserAgent string, this will return the next character if any ' as the version number. ' We extract the string until a '.' and then convert it ' into integer. If -1 is returned from this function then it isn't MSIE ' Function GetInternetExplorerVersionNumber(sHttpUserAgent) Dim nMSIE GetInternetExplorerVersionNumber = -1 nMSIE = InStr(sHttpUserAgent, "MSIE") If 0 <> nMSIE Then numChar = InStr(Mid(sHttpUserAgent, nMSIE + 5), ".") - 1 If -1 = numChar Then ' no '.' in the string numChar = 1 End If If nMSIE + 5 + numChar - 1 <= Len(sHttpUserAgent) Then GetInternetExplorerVersionNumber = CInt(Mid(sHttpUserAgent, nMSIE + 5, numChar)) End If End If End Function ' ' We define a Old MSIE based browser ' if it has the string MSIE that is followed by a version number that is less than 4 ' NOTE: ' IsOldMSIE = False does not imply MSIE >= 4. ' ' i.e. Not IsOldMSIE("abc") = True ' Not IsOldMSIE("MSIE") = True ' Function IsOldMSIE(sHttpUserAgent) Dim nMSIE Dim sMSIEVersion IsOldMSIE = False nMSIE = InStr(sHttpUserAgent, "MSIE") If nMSIE <> 0 AND (nMSIE+5 < Len(sHttpUserAgent)) Then nVersion = GetInternetExplorerVersionNumber(sHttpUserAgent) If -1 <> nVersion Then IsOldMSIE = nVersion < NEW_MSIE_VERSION End If End If End Function
Mais Informações
As linhas 44 a 70 no ficheiro Certsbrt.inc nãomodificado no servidor baseado no Windows Server 2008 R2 são as seguintes. Estas são as linhas que vão ser substituídas.
'
' We define a Old MSIE based browser ' if it has the string MSIE that is followed by a version number that is less than 4 ' NOTE: ' IsOldMSIE = False does not imply MSIE >= 4. ' ' i.e. Not IsOldMSIE("abc") = True ' Not IsOldMSIE("MSIE") = True ' Function IsOldMSIE(sHttpUserAgent) Dim nMSIE Dim sMSIEVersion nMSIE = InStr(sHttpUserAgent, "MSIE") If nMSIE=0 Then IsOldMSIE = False ElseIf nMSIE+5 < Len(sHttpUserAgent) Then sMSIEVersion = Mid(sHttpUserAgent, nMSIE+5, 1) IsOldMSIE = CInt(sMSIEVersion) < NEW_MSIE_VERSION Else IsOldMSIE = False End If End Function