User Guide
Table Of Contents
- Contents
- About Flash Remoting
- Getting Started
- Using Flash Remoting ActionScript
- Using the RemotingConnector component (Flash Professional only)
- Using Flash Remoting Data in ActionScript
- About Flash Remoting and data types
- Understanding Action Message Format
- Converting from ActionScript to application server data types
- Converting from application server data types to ActionScript
- ColdFusion to ActionScript data conversion issues
- About working with objects
- About working with RecordSet objects
- About working with XML
- The NetConnection Debugger
- Using Flash Remoting with ColdFusion MX
- Using Flash Remoting for Java
- About Flash Remoting for Java
- Calling Java classes or JavaBeans from ActionScript
- Calling Enterprise JavaBeans (EJBs) from Flash
- Calling servlets and JSPs from Flash
- Calling JMX MBeans from Flash (JRun only)
- Calling server-side ActionScript from Flash (JRun only)
- Handling function results in ActionScript
- Using Flash Remoting with JRun security
- Passing XML objects between Flash and Java
- Viewing Flash Remoting log entries
- Using Flash Remoting for Microsoft .NET
- Flash Remoting for Microsoft .NET
- Calling ASP.NET pages from Flash
- Making an ASP.NET page available to Flash Remoting
- Getting a reference to an ASPX-based service in ActionScript
- Invoking ASPX pages in ActionScript
- Using the Flash Remoting custom server control in ASPX pages
- Using the Flash Remoting namespace in code-behind files
- Using ASP.NET state management with Flash Remoting
- Using ASP.NET exception handling
- Using ADO.NET objects with Flash Remoting
- Displaying a RecordSet object in Flash with ActionScript
- Calling web services from Flash
- Calling ASP.NET assemblies from Flash
- Viewing Flash Remoting log entries
- Using NetServices and Connection Classes
- Index

Flash Remoting ActionScript classes 33
NetServices
(Deprecated)
Creates a gateway connection, sets a default gateway, and establishes a
Connection object for the gateway. The gateway is established by the Flash
Remoting software that resides on the application server.
Use the
NetServices.createGateWayConnection() method to create a
gateway Connection object that connects your Flash application to a Flash
Remoting gateway on the application server. For more information on using
NetServices methods, see “Using NetServices and Connection Classes”
on page 163.
PendingCall Generated on each call to a method of a Service object. Contains the
responder property, which gets or sets a Responder object for a PendingCall
object. For more information on obtaining the result of a call to a service, see
“Using PendingCall and RelayResponder objects for a specific service
function” on page 45
.
RecordSet Accesses and manipulates RecordSet objects returned by a service. Also,
creates client-side record sets. RecordSet objects typically represent SQL
query results and correspond to the ColdFusion Query objects and C#
System.Data.DataTable objects. RecordSet methods include functions to
create record sets and to add, delete, change, and get record set items. They
also can get information about the record set, sort the record set, define an
object to receive notifications when the record set changes, and set the way
the record set is delivered from the server.
For more information on using the RecordSet class, see “About working with
RecordSet objects” on page 73.
RelayResponder A responder object that relays result and fault calls to corresponding functions
on the specified object. For more information, see “Using the
RelayResponder object for a service” on page 44.
RemotingConnector Provides an easy way for Flash Professional clients to call functions on
server-side objects that are deployed within ColdFusion, J2EE, or Microsoft’s
.NET. For more information, see Chapter 3, “Using the RemotingConnector
component (Flash Professional only),” on page 53 and the
RemotingConnector class in the Flash Remoting ActionScript Dictionary.
ResultEvent Returned as an argument to the result handling method that you specify in the
responder object. It contains the result that is returned by a service function.
For more information on using a ResultEvent object, see “Handling service
results and errors” on page 43.
Service Represents a reference to a specific remote service and the methods that the
service exposes. Remote services consist of application server modules that
leverage technologies such as JavaBeans, Macromedia ColdFusion
Components (CFCs), CFML pages, ASP.NET web services and pages. For
more information, see “Calling service functions” on page 41.
Class Purpose