HTTP GET Example
This code demonstrates the use of HTTP GET with the ContentProxy object:
ContentProxy.GetUrl("http://xml.example.com/", F(this, callback), onerror);
function callback(result)
{
// result is a string that can be used as needed
}
function onerror(exception)
{
}

