8/18/2010 11:11:57 AM
Title:
How to call methods in url by http service
Hi all,
I have a method Getlists(username,password), in a httpservice url=http://test/sample/something.aspx;
like, where to call this method in send() , how to give methodname as parameter and how to pass parameters to this method,
I am not sure how to call, please suggest
8/18/2010 10:43:54 PM
private function submitClick():void{
var paramObj:Object = new Object();
paramObj["username"]= userNameTxt.text;
paramObj["password"] = 'pwdTxt.text';
searchService.send(paramObj);
}
hope this might give u some idea