I have a .NET web service that allows access to various levels of resources (data) depending on what user logs into IIS using Basic authentication.
In my Flex application, which is not running on the same server as my web service, I would like to have the user login with a user name and password. Then pass these credentials along to the .NET web service. I don't care if the flex app itself is secure; it is only the web service that has sensitive data. I have tried to use named HttpService and assign the user's credentials using the setUsernamePassword method but it doesn't seem to work after the first use. Once the proxy connects to the web service, it seems to keep the same connection credentials. Does anyone know of a better way to pass along the user's credentials? Or does anyone have a better idea on how to do this? Thanks, Bill

