Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Contributor
roxburd
Posts: 40
Registered: ‎01-14-2011
Accepted Solution

app error 603 - service startup process died

 

Hi,

 

Has anyone seen this?

 

My app runs for a while (2 seconds to an hour or so) and then crashes the entire device.

 

I get an "app error 603"

 

Debug output shows:

Application net_rim_services_impl(8) is not responding; process terminated

[d d03]

d d03

...

App Error 603

Service startup process died

 

Any pointers much appreciated.

 

Thanks,

Dave

Please use plain text.
Developer
simon_hain
Posts: 13,754
Registered: ‎07-29-2008
My Carrier: O2 Germany

Re: app error 603 - service startup process died

you block the event thread, most likely by doing networking or other blocking processing without using a separate thread.

----------------------------------------------------------
feel free to press the like button on the right side to thank the user that helped you.
please mark posts as solved if you found a solution.
@SimonHain on twitter
Please use plain text.
Contributor
roxburd
Posts: 40
Registered: ‎01-14-2011

Re: app error 603 - service startup process died

Thanks Simon,

 

My app had indeed become a little messy through 'evolution'. A quick (though comprehensive) refactoring seems to have sorted the problem.

 

Dave

Please use plain text.
Trusted Contributor
Davidf65
Posts: 151
Registered: ‎07-20-2010

Re: app error 603 - service startup process died

hi, did you use a seperate thread for the blocking operation? 

Please use plain text.