Hello,
We have the following code to access external network. It's working on Tizen Web Simulator, but not working on emulator and development phone. We also add access permission in config.xml. Is there anything else we need to do? Please help. Thanks.
<access origin="*" subdomains="true"/>
var xmlHttp = null;
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
xmlHttp.send(null); //exception 101 here
var str = xmlHttp.responseText;