User Guide

XMLConnector.status 1499
The code field for the status event is set to Fault if problems occur with the call, as follows:
The following are the faults that can occur with the
status event:
Code Data Description
Fault {faultcode: code,
faultstring: string,
detail: detail,
element: element,
faultactor: actor}
This event is emitted if other
problems occur during the
processing of the call. The data is
a SOAPFault object. After this
event occurs, the attempted call
is considered complete, and
there is no
result or send event.
FaultCode FaultString Notes
XMLConnector.Not.XML
params is not an XML
object
The params value must be an
ActionScript XML object.
XMLConnector.Parse.Error
params had XML
parsing error NN.
The status property of the params
XML object had a nonzero value
NN. To see the possible errors
NN, see
XML.status in
ActionScript 2.0 Language
Reference.
XMLConnector.No.Data.Received
no data was received
from the server
Due to various browser
limitations, this message can
mean either (a) the server URL
was invalid, did not respond, or
returned an HTTP error code; or
(b) the server request succeeded
but the response was 0 bytes of
data. To work around this
restriction, design your
application so that the server
never returns 0 bytes of data. If
you receive the fault code
XMLConnector.No.Data.Received,
you will know that there was a
server error, and can inform the
user accordingly.