User Guide

Log.getDateString() 1417
You then pass this Log object as a parameter to the WebService constructor:
myWebSrvc = new WebService("http://www.myco.com/info.wsdl", myWebSrvcLog);
As the web services code executes and messages are sent to the Log object, the onLog()
function of your Log object is called. This is the only place to put code that displays the log
messages if you want to see them in real time.
The following are examples of log messages:
7/30 15:22:43 [INFO] SOAP: Decoding PendingCall response
7/30 15:22:43 [DEBUG] SOAP: Decoding SOAP response envelope
7/30 15:22:43 [DEBUG] SOAP: Decoding SOAP response body
7/30 15:22:44 [INFO] SOAP: Decoded SOAP response into result [16 millis]
7/30 15:22:46 [INFO] SOAP: Received SOAP response from network [6469 millis]
7/30 15:22:46 [INFO] SOAP: Parsed SOAP response XML [15 millis]
7/30 15:22:46 [INFO] SOAP: Decoding PendingCall response
7/30 15:22:46 [DEBUG] SOAP: Decoding SOAP response envelope
7/30 15:22:46 [DEBUG] SOAP: Decoding SOAP response body
7/30 15:22:46 [INFO] SOAP: Decoded SOAP response into result [16 millis]
Log.getDateString()
Availability
Flash Player 6 (6.0.79.0).
Edition
Flash MX Professional 2004.
Usage
myWebSrvcLog.getDateString()
Parameters
None.
Returns
The current date and time as a string in the following format: mm/dd hh:mm:ss.
Description
Function; returns the current date and time as a string in the following format: mm/dd
hh:mm:ss
. You can use Log.getDateString() to get the date in the same format that is
provided in a log message, or you can record only the date string in a
log.onLog event
handler for use with custom log handling.