Hi Baljeet, On the flex side you'll get the result as an object with keys the same as that of your server side HashMap's.
You can look at the keys and values in the object by putting the
following code in your result event handler:
for ( var key:String in event.result )
{
Alert.show("key is " + key + " val is " + event.result[key]);
}
Cheers,
--
Anirudh Sasikumar
http://anirudhs.chaosnet.org/

