FlashRemotingTransformation Function

Action

This function enables the transformation from binary AMF to a textual XML-based representation. This function is usually called in the TInit transaction of Flash Remoting scripts.

Include file

FlashRemoting.bdh

Syntax

FlashRemotingTransformation( in bRequest  : boolean,                             in bResponse :
boolean optional,                             in sOptions  :
string optional );
Parameter Description
bRequest If true, binary AMF in request bodies will be transformed.
bResponse If true, binary AMF in response bodies will be transformed. If this parameter is omitted, the corresponding setting from the Web/Replay/Transformation tab in the profile settings dialog is used.
sOptions Specifies additional options for the AMF transformation. If omitted, the corresponding setting from the Web/Replay/Transformation tab in the profile settings dialog is used.

Example

dcltrans
  transaction TInit
  begin
    FlashRemotingTransformation(true, true, "Verbose");
  end TInit;