chobo
chobo

Reputation: 32281

How to consume a REST web service with Flashbuilder 4?

I am creating a Restful WCF web service which will need to be consumed by FlashBuilder 4. Is this possible? If so, how can I go about doing that?

Thanks

Upvotes: 3

Views: 5061

Answers (2)

RJB
RJB

Reputation: 21

Take a look at the data services wizard. Here is a good blog with a tutorial: http://technoracle.blogspot.com/2009/07/flash-builder-4-tutorial-2-restful.html

Upvotes: 1

J_A_X
J_A_X

Reputation: 12847

Easily.

<s:HTTPService id="service" url="http://domain.com/the/rest/path/" result="onResult(event)" resultFormat="xml" />

Then just need to do service.send().

Upvotes: 4

Related Questions