Two WebApplications are deployed in IIS, namely / HRMS, / TravelDesk. Both WebApps use session through AspState, configuration information
<sessionState allowCustomSqlDatabase="true" mode="SQLServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="Application Name=Portal;data source=localhost;Initial Catalog=ASPState;User ID=sa;Password=dev2005" cookieless="false" compressionEnabled="true" timeout="720"/>
The user is registered in the application / HRMS, from which he goes to the TravelDesk application in a new window, the session becomes common for two web applications.
In TravelDesk, a user tries to load a bunch of information, and it takes more time to process the request on the server. At the same time, I am trying to access the / HRMS application, but it does not respond until TravelDesk completes?
will a lock session occur in SQLServer? Please help me solve this problem.
VIJAY Feb 24 2018-12-12T00: 00Z
source share