Flash AS1/AS2 : quick + dirty SOAP msg send with minimum overheads?
Is there a way to send a simple SOAP message to a开发者_Go百科 web service on another domain, while not caring about the response (this is simply a small data push) in an old flash app?
Many thanks in advance...
Quickest thing I can think of:
Drag the WebService Connector component from the Components Panel to the Stage.
Give it an instance name and set the operation in the Components Inspector.
Trigger it via Actionscript:
yourWebServiceConnector.trigger();
That should be it.
A more comprehensive guide on as2 data components is available here.
HTH, Georrge
精彩评论