HTTP GET promotes URI addressability so, designers should adopt it for safe operations such as simple queries. POST is appropriate for other types of applications where a user request has the potential to change the state of the resource (or of related re
"The finding explains how to choose between HTTP GET and POST for an application taking into account architectural, security, and practical considerations."
Response.Buffer = True Dim objXMLHTTP, xml Set xml = Server.CreateObject("Microsoft.XMLHTTP") ' Notice the two changes in the next two lines<sep/>
Use GET if: * The interaction is more like a question (i.e., it is a safe operation such as a query, read operation, or lookup). Use POST if: * The interaction is more like an order, [.. ..]