Dear All,
I have calling the platformRequest method to download the others Jad/Jar file in my application. It is work normally in Nokia N73. But I found that it is not work on N70, can anyone help me to solve this problem? thx.
Regards,
Hang
Dear All,
I have calling the platformRequest method to download the others Jad/Jar file in my application. It is work normally in Nokia N73. But I found that it is not work on N70, can anyone help me to solve this problem? thx.
Regards,
Hang
Can you be a little more specific?
Are you using the exatly same midlet(s?) on N70 and N73?
Are you able to connect to the server?
What is the error message?
Does the installation start at all?
What APIs are you using in your midlet (N70 does not support all the same API as N73 - SATSA, Location and SIP are missing)?
Hartti
Hi, hartti, Thank you for your reply first.
I am using the same MIDlet on N70 and N73.
And the N73 can be connect to the server and download the other jad file, but not on the N70.
There are no any error message, the MIDlet in N70 just stop on the page without any response.
The installation has been started on N73, and waiting for user accept the installation, but not on the N70.
Is it N70 does not support the platformRequest method?
Thank you for your help.
Best Regards,
Hang
Hi Hang,
"Is it N70 does not support the platformRequest method?"
N70 is a MIDP 2.0 device, so it does support platformRequest.
http://www.forum.nokia.com/devices/N70
Hum...as Hartti asked, are you able to connect to the server? Is your APN configured properly on N70?
Juarez Junior
Juarez Alvares Barbosa Junior - Brazil
Hi Juarez Junior,
Thank you for your reply first.
I can download the application by using browser but not inside the MIDlet application.
Both the link I enter in browser or in the MIDlet application is the same.
So, I think the configuration of N70 is ok.
Thank you for your help.
Best Regards,
Hang
Hi All,
Anyone can help me to solve this problem?
Thank you.
Regards,
Hang
What do you mean by "I can download the application by using browser but not inside the MIDlet application."
platformRequest() opens the browser which should start the download, the download does not happen inside the application.
Hartti
I know. I mean I can use browser to download the program, so the network setting is not a problem.
And the problem is that, when i call platformRequest(), N70 does not open the browser but N73 is ok.
Thank you for your help.
Regards,
Hang
hi Hang,
there is other thread where other developer mentioned N70 not performing platformRequest(...):
http://discussion.forum.nokia.com/fo...&highlight=n70
are you sure you've developed usual stuff in your code?
especially "true" fallback?Code:private void launchBrowser(){ String url = "http://www.bbc.co.uk/mobile/"; try { if(platformRequest(url) == true){ doExit(); } else{ mainForm.append("web page launched\n"); } } catch (ConnectionNotFoundException ex) { ex.printStackTrace(); } }
regards,
Peter