Znaki
Oglejte si ta scenarij:
-
Storitev vloge za spletno včlanitev v storitve potrdil je nameščena v strežniku, Windows Server različica 2008 R2.
-
Imate odjemalski računalnik, v katerem se izvaja Internet Explorer 10 ali novejša različica.
-
Poskušate dostopati do strani včlanitve v storitev potrdil, ki gostuje v strežniku Windows Server 2008 R2.
V tem primeru se v brskalniku Internet Explorer prikaže to sporočilo o napaki:
Ta spletni brskalnik ne podpira ustvarjanja zahtev za potrdilo
Razlog
Pri oknu »Različica brskalnika« je različica brskalnika nepravilno prepoznana kot »IE 1«.
Rešitev
Podprte rešitve za to težavo so:
-
Konfigurirajte združljivostni pogled v Brskalniku Internet Explorer.
-
Premaknite funkcionalnost strani »Spletna včlanitev« v Windows Server 2012.
-
Spremenite datoteko Certsbrt.inc tako, da zamenjate vrstice od 44 do 70 s to vsebino. Certsbrt.inc je v tej mapi:
%WINDIR%\system32\certsrv\en-us
'' 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 nMSIEGetInternetExplorerVersionNumber = -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 IfEnd 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 IfEnd Function
Več informacij
Vrstice 44 do 70 v nespremenjeni datoteki Certsbrt.inc v strežniku Windows Server 2008 R2 so naslednje. To so vrstice, ki jih želite zamenjati.
'' 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 IfEnd Function