Hi All,

I am making a call to server using

private function CallServer():void{

private var _command : IResponder;
private var _service : HTTPService;

_service.method = "POST";
_service.resultFormat = "text";
_service.url ="http://IP/Desc/Servlet?UserId="+usrId
+"&Password="+passwd";

var token : AsyncToken = _service.send();

token.addResponder( _command );
}
Now the problem is that the  credentials that I am sending over the
net goes in the form of GET. I checked it through a HTTP snooping
tool.  The UserId and password are visible.
How can i send this data in the" body" of the request.

There is something wrong in the creation of the request. Even if I am
seinding the data as POST it is going as GET.

Please reply.

Thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to