Flash Media Server Resources
|
SOAPCall class
AvailabilityFlash
Media Server 2
The SOAPCall class is the object type that
is returned from all web service calls. These objects are typically
constructed automatically when a Web Service Definition Language
(WSDL) is parsed and a stub is generated.
Property summary
Property
|
Description
|
SOAPCall.request
|
An XML object that represents the current
SOAP (Simple Object Access Protocol) request.
|
SOAPCall.response
|
An XML object that represents the most recent
SOAP response.
|
SOAPCall.onFault()SOAPCall.onFault(fault)
Invoked when a method has failed and returned an error.
AvailabilityFlash
Media Server 2
Parameters- fault
- The fault parameter is an object version
of an XML SOAP Fault (see SOAPCall class).
SOAPCall.onResult()mySOAPCall.onResult(result){}
Invoked when a method has been successfully invoked and returned.
AvailabilityFlash
Media Server 2
Parameters- result
- The decoded ActionScript object returned by the operation
(if any). To get the raw XML returned instead of the decoded result,
access the SOAPCall.response property.
SOAPCall.requestmySOAPCall.request
An XML object that represents the current Simple Object Access
Protocol (SOAP) request.
AvailabilityFlash
Media Server 2
SOAPCall.responsemySOAPCall.response
An XML object that represents the most recent SOAP response.
AvailabilityFlash
Media Server 2
|