tags:

views:

924

answers:

1

Hi,

If you look at the link below, there is some PHP code called by Flex mxml through HttpService. The PHP code has functions, but the mxml code doesn't call a specific function. How can I use httpservice to call a specific function (in my case, one which takes parameters)?

http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_2.html

Thanks

+1  A: 

I think you may be looking for RPC rather than HTTP calls. The example you linked to uses an HTTPService. Take a look at RemoteObject with PHP. I suspect you are going to have to get into some layer on the server which handles AMF. Here's an article.

Simon
dotnetdev