Author: sophia_in_sv | Posted on: 5/31/2009 2:08:43 AM | Views : 1601

Hello Guys, I have this problem with our website, it happens very often, every minute, in the event viewer, i can see this 1315 Event code: 4005 Event message: Forms authentication failed for the request. Reason: The ticket supplied has expired.
We use form authentication and use cookie, session uses inProc. Here is the web.config for form authentication and session:
 <authentication mode="Forms">
            <forms name="iform" loginUrl="login.aspx" protection="All" path="/" timeout="20" slidingExpiration="true"/>
        </authentication>

     <sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes& ...

Go to the complete details ...