Hi,
I'm, trying to implement ownership-based access control, I confirudes my Feature server and it works perfect from rest directory(Login form appears correctly).
When I try to access to my FeatureServer (secured) from rest directory(".../arcgis/rest/services/Edit/Editing/FeatureServer/0") from Web Browser I had to use my User/password, this is fine and works great, when I execute submit from rest using user/password I CAN see password value encrypted and then I can view my FeatureServer.
My problem, I'm trying to use an example using Flex (Edit secure service—ArcGIS API for Flex | ArcGIS for Developers) using my FeatureServer(secured),
I have customized my login window using
IdentityManager.instance.signInWindowClass= mySkins.supportClasses.customSignInWindow;
IdentityManager.instance.enabled = true;
My problem is that I can NOT ENCRYPT PASSWORD value(it's visible when post executes), I thought that was just my code, I saw original
example and it works on the same way(PASSWORD is visible without encryption).
Any ideas? How can I encrypt password in Flex app just like when I access from Web Browser using my url:
".../arcgis/rest/services/Edit/Editing/FeatureServer/0"?
Thanks!!