I wrote a Java application on 6610. The program runs on the real device and keeps polling the web server and throws a Java exception - global root overflow.
Can anyone get me some hints on it?
I wrote a Java application on 6610. The program runs on the real device and keeps polling the web server and throws a Java exception - global root overflow.
Can anyone get me some hints on it?
Hello
In the software versions before January 2003 there was an error where the usage of HTTP connection could cause a global root overflow.
Since January 2003 problem was fixed and does not occur with these later SW versions.
The global root overflow only occurs if a lot of HTTP requests are made and there is no data in the response,
so the simple solution is to ensure that the problem does not occur on any build is to make sure each
HTTP response does contain some body data, the MIDlet can read and discard this if none is expected.
I hope this helps you