Using fault property in HttpService call.

January 2, 2008

The fault property is used to prompt the user that the HttpService call is not made and some error in connection process.

<mx:HTTPService id=”srvMain” method=”POST” useProxy=”false” showBusyCursor=”true”
fault=”httperror()”>

here iam calling a function in case of wrong connection:

private function httperror():void
{
Alert.show(”Unable to Load, Contact Administrator”,”Error”);
}

you can try by not mentioning the url : it will promt.


Using GET method in Httpservice.

January 2, 2008

First the httpservice:

<mx:HTTPService id=”srvMain” useProxy=”false” showBusyCursor=”true” result=”readmeMain(event);”
fault=”httperror()” method=”GET”/>

and now use in any function :

srvMain.url=”chtyl.php?ACTION=” + strAction;
srvMain.send();

where strAction is some string variable.

Leave a comment for queries.