Book Image

Learning Microsoft Azure

By : Geoff Webber Cross, Geoff Webber-Cross
Book Image

Learning Microsoft Azure

By: Geoff Webber Cross, Geoff Webber-Cross

Overview of this book

Table of Contents (19 chapters)
Learning Microsoft Azure
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Answers


  1. UseDevelopmentStorage should be set to true.

  2. WADLogsTable.

  3. The Debug configuration and Enable Remote Debugger for all roles in the Advanced Settings tab.

  4. WaWorkerHost.exe.

  5. We start debugging all role instances simultaneously.

  6. No, unfortunately it's only available in Visual Studio Ultimate.

  7. 3389.

  8. The RoleEnvironment.Changed event allows us to detect when config has changed in code and deal with it accordingly at runtime. RoleEnvironment.Changing allows us to recycle the role if the config is changing using the e.Cancel flag so that new settings are applied on start.

  9. They are defined on a per-role basis in the cloud service's ServiceDefinition.csdef file.

  10. Build action is set to Content and Copy to Output Directory is set to Copy if newer.

  11. It's a standard environmental variable, which gives us the path of the temp directory.

  12. Limited runs the script with normal privileges while elevated runs the script with administrator privileges.