hi,
im using XML files to make the app multilanguage, everything works fine in the simulator, but when i try to test the app using the http://dev-wam.browser.ovi.com/wam/v1_0/clients... url, it doesnt load, and when i check the errors log, it saids that the var that is supposed to have the xml date is null.
The XML files are part of the wgz, they are in a forlder called xml, i use the following function to load the file
i also use this function to get rss feeds, if someone can help me, i´ll be very gratefulCode:function loadDoc(fileurl){ if (window.XMLHttpRequest) { xhttp = new XMLHttpRequest(); } else { xhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xhttp.open("GET", fileurl, false); xhttp.send(null); return xhttp.responseXML; }
Thanks

Reply With Quote

