Contents > Developing ColdFusion MX Applications > Using Server-Side ActionScript > About the CF.http function PreviousNext

About the CF.http function

You use the CF.http ActionScript function to retrieve information from a remote HTTP server using HTTP Get and Post methods, as follows:

The most basic way to use the CF.http function is to use it with the Get method argument to retrieve a page from a specified URL. The Get method is the default for the CF.http function.

The following server-side example retrieves file content from the specified URL:

function basicGet(url)
{
   // Invoke with just the url argument. This is an HTTP GET.
   result = CF.http(url);
   return result.get("Filecontent");
}

The client-side example could look like the following:

#include "NetServices.as"
NetServices.setDefaultGatewayUrl("http://mycfserver:8500");
gatewayConnnection = NetServices.createGatewayConnection();
myHttp = gatewayConnnection.getService("httpFuncs", this);

// This is the server-side function invocation
url = "http://anyserver.com";
myHttp.basicGet(url);

// Create the results function
function basicGet_Result()
{
   url = "http://anyserver.com
   ssasFile.basicGet(url)
}

Contents > Developing ColdFusion MX Applications > Using Server-Side ActionScript > About the CF.http function PreviousNext

ColdFusion 9 | ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting

Version 6.1

Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.