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.
FlashRemoting.bdh
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. |
dcltrans transaction TInit begin FlashRemotingTransformation(true, true, "Verbose"); end TInit;