jasonblack | 12 January, 2012 20:09
Upgrades to Nokia Belle software (also known as Symbian Belle) will start to roll out worldwide soon. Now you can optimize your current S^3 and Symbian Anna apps to make the most of the UI changes that Belle brings to a wide range of Nokia’s Symbian smartphones.
While many existing apps will be largely compatible with Belle from the start, we recommend that you first test your older apps with Nokia Belle and then address any compatibility issues you may find. Don’t have a Nokia Belle phone? No problem, you can use Nokia’s free Remote Device Access service to test your apps. Depending on the results, you may decide to make certain changes; then you can republish or update your app in Nokia Store to make the most of the new Belle software.
Also, if you develop new apps that use Belle-specific APIs, these apps will not work with phones that run S^3 or Symbian Anna. So you may also decide to limit the distribution of these applications to Belle-only phones.
Documentation about Nokia Belle compatibility is now available in the Nokia Developer Wiki. [Note: This Wiki article is a work in progress, and more details will be added soon.]
To learn more, watch this video showing a hands-on demo of the Symbian Belle UI:
Commentsltomuta | 20/01/2012, 10:26
It does not sound like your problem is in any way related to your application's specific behavior on Belle. Is it?
Please use the discussion boards for any technical discussions, we have dedicated forums for Java networking discussions.
Please also include the relevant info in the post. Above you have the HTTP parameters for the request and as you said, that part works, and you are receiving the due HTML content from the server. Your problem is not here, but in what you do with that HTML content after you receive it.
waseemahmed76 | 19/02/2012, 15:52
Dear concern
I updated my nokia N8 to Belle, Excellent . but the problem is that fring is not working . please check this issue & resolve it on priorty basis.
Thanks
Conecting People.
waseemahmed76 | 19/02/2012, 15:59
Dear
I updated my nokia N8 to Belle. Please note these three issues & resolve them instantly.
1. Fring is not supporting.
2. During communication voice is too low (even volume is max.)
3. sometime Mobile N8 " not responding".
Thnx
How to set content type of midlet in j2me application using netbeans 7.1
nav007neet | 18/01/2012, 09:28
Hello everyone,
I have developed one small application in j2me using netbeans(7.1) that show webpage of given url. Webpage is opened correctly on emulator but problem is that it show source code of webpage. i want to open webpage in midlet like browser.
and i have used given code to set content type of midlet:
conn = (HttpConnection)Connector.open(url, Connector.READ_WRITE);
conn.setRequestProperty("User-Agent", "Profile/MIDP-2.1 Configuration/CLDC-1.1");
conn.setRequestProperty("CONTENT-TYPE", "application/x-www-form-encoded");
or
conn = (HttpConnection)Connector.open(url, Connector.READ_WRITE);
conn.setRequestProperty("User-Agent","Profile/MIDP-2.1 Configuration/CLDC-1.1" );
conn.setRequestProperty("Content-Language", "en-US" );
conn.setRequestProperty("Content-Type", "text/html; charset=iso-8859-1");
conn.setRequestProperty( "Connection", "keep-alive" );
conn.setRequestProperty("Content-Length","51200");
Please tell me if any one have solution of my problem.
Thanks,
Navneet