"Failed to start monitoring directory changes".
ASP.Net uses the Server Message Block (SMB) protocol to monitor files changes. So that it can reload the application if you made changes to your aspxes, asaxes, or dlls.
However, when more SMB requests exist than the Web server can process, your Web application may unexpectedly restart or you may even lose the session object. To fix the problem, increase the number of connections that you can have by resetting the registry values of the MaxCmds and the MaxMpxCt keys.
Locate and then click the following key in the registry:
HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\parameters
If MaxCmds and MaxMpxCt keys do not exist, it will use the default value for the client (MaxCmds) which is 50.
So you need to manually adding MaxCmds registry key. The recommended values are 253, 1124, and 2048 to the maximum of 65535. And you have to do the same things with MaxMpxCt keys.
Repeat the above steps on your remote file share server.
For more information refers to:
http://www.kbalertz.com/kb_843584.aspx
If MaxCmds and MaxMpxCt keys do not exist, it will use the default value for the client (MaxCmds) which is 50.
So you need to manually adding MaxCmds registry key. The recommended values are 253, 1124, and 2048 to the maximum of 65535. And you have to do the same things with MaxMpxCt keys.
Repeat the above steps on your remote file share server.
For more information refers to:
http://www.kbalertz.com/kb_843584.aspx