Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Identity tag hangs browser ?
Message
De
21/06/2005 06:52:03
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Titre:
Identity tag hangs browser ?
Divers
Thread ID:
01025084
Message ID:
01025084
Vues:
60
Hi All,

Below is a copy of a web.config file at the IIS VD level of a web app (It's essentially a bare bones copy of the default web.config template used by Visual Studio but with the identity tag added). If I uncomment the identity tag then a browser attempting to access a page within its scope will hang indefinitely - no error, no timeout - nothing....
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
   <system.web>
    <compilation defaultLanguage="vb" debug="true" />
    <customErrors mode="RemoteOnly" />
    <authentication mode="Windows" /> 
    <!-- <identity impersonate="true" /> -->
    <authorization>
        <allow users="*" /> <!-- Allow all users -->
    </authorization>
    <trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true" />
    <sessionState 
            mode="InProc"
            stateConnectionString="tcpip=127.0.0.1:42424"
	    sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
            cookieless="false" 
            timeout="20" 
    />
    <globalization requestEncoding="utf-8" responseEncoding="utf-8" />
  </system.web>
</configuration>
Any suggestions as to what could cause this behaviour ?
Regards,
Viv
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform