View comments | RSS feed
Contents > Getting Started Building ColdFusion MX Applications > Configuring Your Development Environment > Configuring database connection and debugging options PreviousNext

Configuring database connection and debugging options

Prior to ColdFusion development, use the ColdFusion MX Administrator to define the connection to the sample database file and any optional debugging options.

To access the ColdFusion Administrator, do either of the following:

Note: If you are ceasing the ColdFusion MX Administrator from a remote client, you must replace localhost with the host name or IP address of the computer where ColdFusion MX is installed.

The following sections describe how to establish a connection to the sample tutorial database file and how to enable optional debugging settings.


Contents > Getting Started Building ColdFusion MX Applications > Configuring Your Development Environment > Configuring database connection and debugging options 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.

Comments


Mow said on Aug 6, 2003 at 3:54 PM :
I just installed the J2EE configuration on JRun option and I am getting nothing through port 8500 -- Administrator nor Flash Remoting
SeanCorfield said on Aug 7, 2003 at 9:40 AM :
I believe the default port for the J2EE Configuration is 8300 not 8500.
reddydc said on Sep 11, 2003 at 8:18 AM :
Yes. The port for the J2EE Configuration is 8300.

--Reddy Pathepuram
No screen name said on Apr 13, 2004 at 12:06 AM :
How can we connect to Database using Flash Action Script? Tell me the steps to follow
reddydc said on May 6, 2004 at 2:45 PM :
Try This!!...Reddy
#include "NetServices.as"
#include "Dataglue.as"
// uncomment this line when you want to use the NetConnect debugger
#include "NetDebug.as"
if (inited == null) {
// do this code only once
inited = true;
// set the default gateway URL (this is used only in authoring)
NetServices.setDefaultGatewayUrl("http://YOURIPADDRESS/flashservices/gateway");
// connect to the gateway
gateway_conn = NetServices.createGatewayConnection();
// get a reference to a service
myService = gateway_conn.getService("YourFolderName.YourCFCFILENAME", this);
myService.getYourFunction();
//myService.getTheToken();
}
stop();

 

RSS feed | Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/coldfusion/6.1/htmldocs/config_3.htm