Hello,
maybe someone can help me.
I am doing a platformRequest("http://www.dm-graf.de") to start the device web browser.
The call will open the browser but it didn't load the page, just showing a blank page.
Anyone an idea why this is happening?
Hello,
maybe someone can help me.
I am doing a platformRequest("http://www.dm-graf.de") to start the device web browser.
The call will open the browser but it didn't load the page, just showing a blank page.
Anyone an idea why this is happening?
Try this
Code:try { boolean b; pauseApp(); notifyPaused(); b = platformRequest("http://www.dm-graf.de"); try { destroyApp(true); } catch (MIDletStateChangeException ex) { ex.printStackTrace(); } notifyDestroyed(); } catch (Exception ex) { }
Please check, if you are able to Open this URL --> http://www.dm-graf.de directly using the device Web browser or not. As you said the brower was opened by your platform request means J2me did its job, now its the problem of Network, your website may not be reachable via your wap gateway.
thanks,
~Amitabh
Thanks for your help.
The problem was a whitespace after the URL. Fixed it and everything is working now.
Gain thanks all for your fast replies.