Can't debug

  • Thread starter Thread starter Sorin Sandu
  • Start date Start date
S

Sorin Sandu

When I try to debug from a client I get
Error trying to run project: Unable to start debugging on the web server.
Not enough storage is available to complete this operation.
What can I do ?
 
Sorin Sandu said:
When I try to debug from a client I get

Error trying to run project: Unable to start debugging on the web server.
Not enough storage is available to complete this operation.

Sorin,
I found the following solution for the error message you are getting:

http://gotdotnet.com/team/csharp/learn/whitepapers/howtosolvedebuggerproblems.doc
*********
Please make sure that RPC is working properly between your client machine
and the remote machine.

The reason for the RPC issues can be:
1. Debugging through a firewall. Microsoft does not recommend or support remote
ASP.Net debugging through a firewall. The best way to do overcome this is use
Terminal Services to log into the remote server and debug locally.

2. One common failure for RPC is the inability to resolve the remote machine
name. RPC relies on name resolution for communication between machines. If
you are unable to resolve the remote servers machine name to the correct IP
address errors may occur.

3. RPC Traffic can flow in one direction but not the other. RPC traffic must be
able to go from the machine used to do the debugging to the remote server and
from the remote server back to the machine used to do the debugging in order
to successfully debug remotely. Make sure that RPC communication is enabled
in both directions.

To analyze your RPC, you can use "RPCPing" tool.
http://support.microsoft.com/default.aspx?scid=kb;en-us;167260
*********

--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com
 
Back
Top