Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Identity tag hangs browser ?
Message
From
21/06/2005 06:52:03
 
 
To
All
General information
Forum:
ASP.NET
Category:
Other
Title:
Identity tag hangs browser ?
Miscellaneous
Thread ID:
01025084
Message ID:
01025084
Views:
58
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
Next
Reply
Map
View

Click here to load this message in the networking platform