Using fault property in HttpService call.
January 2, 2008The 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.
Posted by kumargandhi