Situation is you have to develop an application against an Active Directory Tree. Want to use Role based security based on AD user groups. The deployment tree is unavailable, no trust exists or is allowed between the development tree and deployment tree.
What are the best practices for developing the application and then deploying. First problem is the role names are different because of the domain prefix. A lot of these are declarative in nature; say using attributes. The problem then is obviously in the deployed environment the role strings will be different.
The other problem is being able to debug running as a different account on the development. Logging off and logging is defeats having the debugger attached. How is this solved?
Thanks In Advance.