tags:

views:

38

answers:

2

Is there a way to send a simple SOAP message to a 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...

A: 

Quickest thing I can think of:

  1. Drag the WebService Connector component from the Components Panel to the Stage.

  2. Give it an instance name and set the operation in the Components Inspector.

  3. Trigger it via Actionscript:

    yourWebServiceConnector.trigger();

That should be it.

A more comprehensive guide on as2 data components is available here.

HTH, Georrge

George Profenza
A: 

sorry... I nuked my cookies during some web testing... can someone 'ACCEPT' give George Profenza's answer? It's the one I would like to accept...

justSomeone