MACROMEDIA FLASH COMMUNICATION SERVER MX-SERVER-SIDE COMMUNICATION ACTIONSCRIPT DICTIONARY Bedienungsanleitung Seite 28

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 80
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 27
28
Description
Method; rejects the connection call from a client to the server. The application.onConnect
event handler notifies a script when a new client is connecting. In the function assigned to
application.onConnect, you can either accept or reject the connection. You can also define a
function for
application.onConnect that calls an application server for authentication. In that
case, an application could call
application.rejectConnection from the application server’s
response callback to disconnect the client from the server.
When you use components and your code includes an explicit call to
application.acceptConnection or application.rejectConnection, the last line (in order
of execution) of the onConnect method should be either
application.acceptConnection or
application.rejectConnection. Also, any logic that follows the explicit acceptConnection or
rejectConnection statement must be placed in application.onConnectAccept and
application.onConnectReject statements, or it will be ignored. This requirement exists only
when you use components.
Example
In the following example, the client specified by client1 is rejected and provided with the error
message contained in err.message. The message “Too many connections” appears on the server
side.
function onConnect(client1){
// insert code here
var err = new Object();
err.message = "Too many connections";
application.rejectConnection(client1, err);
}
The following code should appear on the client side:
clientConn.onStatus = function (info){
if (info.code == "NetConnection.Connect.Rejected"){
trace(info.application.message);
// this sends the message
// "Too many connections" to the Output window
// on the client side
}
};
See also
Application.onConnect, Application.acceptConnection
Application.server
Availability
Flash Communication Server MX.
Usage
application.server
Description
Property (read-only); contains the platform and the server-version information.
Seitenansicht 27
1 2 ... 23 24 25 26 27 28 29 30 31 32 33 ... 79 80

Kommentare zu diesen Handbüchern

Keine Kommentare