BlackBerry - Uncaught exception: Application(353) is not responding; process terminated [closed] - blackberry

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am developing an app for BlackBerry OS 6.0 and onward. When I launch the app it gives an error:
Uncaught exception: Application Trace(353) is not responding; process
terminated.
The exception is not thrown always but only at times.
Can anyone help resolve this error?

The fact that you get this error occasionally indicates you might be using an event thread for too long. In your case, you might be fetching GPS location updates at a continuous level in a thread.
When this issue occurs, the OS will force a stack trace dump for all running applications. You need to recover the event log and locate the stack trace for your application. This will help identify the lines of code that is hogging the processor.
Once you identify the offending code, you either need to modify it so that the event thread is not being monopolized, or possibly isolate the procedure in it's own thread so that the event thread can return to the system dispatcher.

Related

Error Exception EOLeSysError class not registered Class Not Found Delphi 7 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I can successfully import and install type library *.OCX with Delphi 7. (Project - import type library - add - ...)
But when I use that Component, it shows the following message:
Error EOLeSysError class not registered Class Not Registered.
What is the cause of this?
This happens when the .ocx is not registered with the systems COM registry. Normally you would run regsvr32 SomeOCXFileName.ocx to register the COM server, although different components sometimes have different ways of performing that registration.

iOS application on app store becomes unusable after two days [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
An app I recently had approved for sale on the iTunes store has been getting feedback stating a complete breakdown after two days of use. The app works as intended and seemingly (due to it being accepted for distribution) doesn't have any obvious bugs that could cause this sort of strange behaviour an Apple tester might pick up on. Essentially after a few days of use, the app initiates with a completely blacked-out screen and isn't usable.
I can't seem to find anything regarding this problem when searching Google and have no clue where to begin attempting to fix this issue.
Any ideas or links to similar problems would be really helpful.
If this is a frequent issue, you should start seeing crash logs appearing in iTunes Connect for the application, so that would be where I'd start in diagnosing this. Without any sort of crash log or similar data, we can only speculate as to the cause here. – Brad Larson

simulate unable to open database error in iphone dev 5.0 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Hi i have a requirement to simulate an error that states the iphone applicatio is unable to open the database and display values from it. i use sqllite. Please let me know how to simulate that error. I tried by locking the database file, changing the db file to readonly, but nothing happened... please let me know how to simulate the error...
Open the database with a separate connection, set exclusive locking mode, and make some change (you don't need to commit it).

outOfMemoryError on J2ME application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
recently I'm developing a J2ME application using LWUIT library, my application size is 679 KB after obfusticating.
in some mobile devices and in non-specific events I get OutOfMemoryError error.
I want to know what this error is for and does it related to Memory of device or its a bug of my application, and what is the solution?
thanks a lot in advance
Unfortunately there is not a way to tell how to fix your application without studying it. This wiki entry is a good start to understand what to look for when optimizing memory for JavaME apps.

Delphi: stop idHTTP working while time out is [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I do idHTTP.Get('http://example.com/1.zip', FStream);
A server doesn't response...and idHTTP waits for a connect to download a file
I need to stop idHTTP working. If it's connected I can do idHTTP1.Disconnect.
But what about a time when idHTTP isn't connected, when a time out is, and idHTTP waits for a connect -> we are waiting, waiting and then a time out exception will raise (I need to stop working in this waiting time). So I cannot do idHTTP1.Disconnect. If to do that then a not connected exception will raise, because of we are not connected.
How to stop working while waiting for a connect without an exception?
Thanks!
The maximum time for the connect operation of a TidHTTP component can be limited with the ConnectTimeout property.

Resources