Re: [flexcoders] Remember Username/Password !

2007-05-31 Thread Harish Sivaramakrishnan
you could write the username / password into a sharedObject (which is like a cookie) on the client system and retrieve it. On 5/31/07, Ravi Kumar Gummadi [EMAIL PROTECTED] wrote: Hi all, How do we enable the functionality of remembering the credentials (username/password) in a flex

Re: [flexcoders] Remember Username/Password !

2007-05-31 Thread Ian M. Jones
Hi Ravi, You can do cookie like stuff with SharedObjects. Regards, -- Ian M. Jones IMiJ Software http://www.imijsoft.com http://www.ianmjones.net (blog) On Thu, May 31, 2007 10:59, Ravi Kumar Gummadi wrote: Hi all, How do we enable the

RE: [flexcoders] Remember Username/Password !

2007-05-31 Thread Ravi Kumar Gummadi
Thanks guys, Too lazy to completely browse the docs as well! ;) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ravi Kumar Gummadi Sent: Thursday, May 31, 2007 3:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remember

Re: [flexcoders] Remember Username/Password !

2007-05-31 Thread Flexing...
Ravi, BTW, you can access the client IP at the backend using String ipAddress = FlexContext.getHttpRequest().getRemoteAddr(); - import flex.messaging.FlexContext; FlexContext is part of flex-messaging.jar