10-18-2010 07:46 AM
Hi
I developed the application with JDE 4.3 and run the application on 4.3/4.7 and 6.0 version simulators.
In the application i have the browser content for rendering the html content. I used the following code in my application.
connection = {get the connection - sepearate code}
String url = null;
RenderingSession rs = RenderingSession.getNewInstance();
BrowserContent bc = null;
try
{
bc = renderingSession.getBrowserContent(connection, url, null, 0);
Field f= browserContent.getDisplayableContent();
if (f!= null)
{
browserContentManager.add(f);
}
bc.finishLoading();
}
catch (RenderingException e)
{
System.out.println(e);
}
The above code is working fine on both 4.3 and 4.7 version simulators and devices. And i tested the application with blackberry JDE 6.0 version and i got an exception. The html content is not displaying on both simulator/device. I debuging the application from that i am getting null in bc (bc = renderingSession.getBrowserContent(connection, url, null, 0)
. I have the connection but the browser content returns null, and the exception is net.rim.device.api.browser.field.RenderingExceptio
But the same application was worked on jde 4.3 and 4.7 versions simualtor/devices.
Anybody know why it is not working in jde 6.0 and how to make it work in v6.0.
Thanks
mindus
10-19-2010 02:09 AM
Anybody know the answer ????
Thanks
mindus
10-21-2010 03:42 PM
Can you share the URL you were trying to open? Does the same URL work in the BlackBerry Browser? Please try this URL in the browserfielddemo included in the BlackBerry Java SDK and BlackBerry JDE and post the results.
12-02-2010 11:46 AM
Hi, I have the same problem.
I'm using a custom HTTPConnection published in this post; is an implementation to retrieve locally stored HTML code.
BrowserFieldDemo doesn't work on 6.0 (Blackberry 9800 simulator); it shows a blank screen.
12-13-2010 10:26 AM
Is any solution to solve this problem?
Thanks
04-11-2011 02:14 AM
Am also facing the same problem.can anyone suggest a solution to solve this problem?