04-18-2006 01:48 PM
04-19-2006 08:21 AM
Just a couple of ideas...
You said you got "remote" debugging working on the same machine where the development system was. When you moved over to real remote debugging, did you move your built EXE, or just try to connect to the same EXE from a different development machine?
The reason I ask is that if you moved the EXE to the other machine, make sure you move the INI with it. The INI file contains a special line when built with remote debugging on that enables the remote debugging server. Aside from that, you could verify the service locator is running by going to the machine running the EXE while remote debugging is problematic, launching a web browser, and going to the following URL: http://localhost:3580/dumpinfo?
If that comes back with a table of information (or at least a blank page) then that's a start. If it gives the typical "page not found" error, that could be the cause of the problem. You may need to re-install the run-time engine in that case.
04-20-2006 03:00 PM
@Jeff B wrote:The reason I ask is that if you moved the EXE to the other machine, make sure you move the INI with it. The INI file contains a special line when built with remote debugging on that enables the remote debugging server. Aside from that, you could verify the service locator is running by going to the machine running the EXE while remote debugging is problematic, launching a web browser, and going to the following URL: http://localhost:3580/dumpinfo?
================
Yes, the original INI file is there. And I tried the "localhost:3580" suggestion and did get a table of information for my application. But thanks for the ideas anyway, because neither one was something I had thought to check.
04-24-2006 10:16 AM
04-25-2006 07:17 AM