login validation in flex -


i new flex, have problem while username , password validation.i retrieved data (username , password)from xml doc using http service problem have verify username , password entered user username , password of xml doc...can tell me how possible?

my xml doc follows:

<employees>   <employee>     <username>ndo1</username>     <password>1234</password>   </employee>   <employee>     <username>ndo2</username>     <password>1234</password>   </employee>   <employee>     <username>ndo3</username>     <password>1234</password>   </employee>   <employee>     <username>ndo4</username>     <password>1234</password>   </employee>   <employee>     <username>ndo5</username>     <password>1234</password>   </employee> </employees> 

it big security leak if trying transfer account informations client. should send login credentials server, verifies if login valid.

so have implement remote api provides functionality. search web and/or stackoverflow examples how implement authentication flex.

a starting point flex documentation themself: applying flex security


Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -