Active.HTTP-Request = XML-Http?
I'm assuming that this section implements the popular XML-Http requests, such as is used on GMail and Google Suggest. Does anyone have an example using this?
Brian Kreulen
May 4,
var at = new Active.HTTP.Request;
at.setURL("design_handler.asmx/RetrieveWidgetSpecification");
at.setRequestMethod("POST");
var formhandler = this;
at.setParameter("widgetid", widgetid.trim());
var _rsp = at.response;
at.response = function(xml)
{
_rsp.call(this, xml);
// at this point, XML is a standard XML document and you would parse it for your needs
}
This topic is archived.
ActiveWidgets is a javascript library for creating user interfaces. It offers excellent performance for complex screens while staying simple, compact and easy to learn. Deployed by thousands of commercial customers in more than 70 countries worldwide.
Copyright © ActiveWidgets 2021