Hi,
I came across an interesting issue when testing android 2.2. My testing was to use webview api,
webview.loadUrl(url);
if url is from any public domain, ex, www.google.com, the web content is rendered very well. (url="http://www.google.com") if url is from local host, ex, tomcat with port 8080, the web content is rendered as well. (url="http://10.123.21.111:8080/MyWeb") but if url is from other port, ex, websphere with port 9080, the web content is not rendered. (url="http://10.123.21.111:9080/MyWeb") there is no exception thrown, and it shows blank on the emulator.
Is there any setting needed for different port? Anyone can answer this issue?
Thanks.
John