Hi Yucca,
I am trying to develop a WRT similar to the ones I developed for the OVI Beta SDK. I want to retrieve the data from my server. the code is;
function get_Groups()
{
xmlhttp = new window.XMLHttpRequest();
params = "Mode=findFamily&Name="+MyName+"&Phone="+MyPhone;
xmlhttp.open("POST", "http://d4072.mysite.westnethosting.com.au/FamilyFinder/FindMyFamily.asp?"+params);
xmlhttp.send(null);
xmlhttp.onreadystatechange = stateChangedGroups;
}
I am using Aptana IDE to do this developemnt and displaying the result with the Nokia Web Runtime pug-in. I get no response. What am I doing wrong? This works with my web sites and Beta OVI versions.
Regards

Reply With Quote

