I am going to migrate a existing application (single machine) to Windows Azure. And it is stored somethings on HttpApplicationState.
Is it able to share application object across Web Role instance? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. If you want state shared between instances in a web role then each instance will need to reference some common data storage (e.g. an SQL Azure table) each time you want it. Of course you must also be careful of concurrency issues.