Hello World XML
- Pros - Standardized data serialization. Lots of existing data on the web. Scalable model. Very customizable.
- Cons - DOM can be cumbersome to work with. Lots of "extra data". Required knowledge of lots of systems. XSS vulnerability.
- Files
Pulling data from another server
var g_HTTP = Server.CreateObject('MSXML2.ServerXMLHTTP');
g_HTTP.open('POST', sEndpoint, false);
g_HTTP.send(sRequestData);
Response.Write(g_HTTP.responseText);
<< BackNext >>