User Guide
1450 WebServiceConnector component (Flash Professional only)
WebServiceConnector parameters
You can set the following authoring parameters for each WebServiceConnector component
instance by using the Parameters tab of the Component inspector:
multipleSimultaneousAllowed is a Boolean value that indicates whether multiple calls can
take place at the same time; the default value is false. If this parameter is
false, the
trigger() method does not perform a call if a call is already in progress. A status event is
emitted, with the code
CallAlreadyInProgress. If this parameter is true, the call
takes place.
operation is a string indicating the name of an operation that appears within the SOAP port
in a WSDL file.
suppressInvalidCalls is a Boolean value that indicates whether to suppress a call if parameters
are invalid; the default value is
false. If this parameter is true, the trigger() method does
not perform a call if the databound parameters fail the validation. A status event is emitted,
with the code
InvalidParams. If this parameter is false, the call takes place, using the
invalid data as required.
WSDLURL (String type) is the URL of the WSDL file that defines the web service operation.
When you set this URL during authoring, the WSDL file is immediately fetched and parsed.
The resulting parameters and results information can be seen in the Schema tab of the
Component inspector. The service description is also added to the Web Service panel. For
example, see www.flash-mx.com/mm/tips/tips.cfc?wsdl.
Common workflow for the WebServiceConnector
component
The following procedure shows the typical workflow for the WebServiceConnector
component.