views:

95

answers:

1
+1  Q: 

Bootstrap Server

Help.

I just changed some code in my program and got this error...

Couldn't register com.yourcompany.XXX with the bootstrap server. Error: unknown error code.

This generally means that another instance of this process was already running or is hung in the debugger.Program received signal: “SIGABRT”.

I tried restoring my program to a version that worked, rebooted, restarted, empty caches and rebuild on versions that even worked before!!

Any help would be appreciated.....

A: 

Here is how I think I solved this 'strange' error:

Couldn't register com.yourcompany.XXX with the bootstrap server. Error: unknown error code. This generally means that another instance of this process was already running or is hung in the debugger.Program received signal: “SIGABRT”.

(1) Clean all the caches, targets, headers on both Xcode and the simulator. (2) Restart your iPhone when it is not connected to the computer and make sure no versions of the program that gave you problems are left on your iPhone. (3) Restore any previous version of your program that you know absolutely worked at one point in time. (4) Shut down your computer/laptop. (I needed to do it 4 times.) Makes no sense to me. (5) Restart your machine and try running a different program to see if you still get the error. If you do not get the error on another program. (6) Compile the program that gave you the error:(1) First with an earlier version that worked. And then, the version that gave you the error. Naturally, you may have to re-add code on a step-wise basis to make sure you know what code caused the error.

MadProfit