ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Native code on MS Azure platformRunning unmanaged code on Windows Azure
MS Azure building blocks - 1
MS Azure building blocks - 2
MS Azure building blocks - 3
Multi-Enterprise Business Application pattern
Project description
How to run any applicationas Worker Role on Azure?WindowsNon-admin userLike USB drive with ¡°runme.bat¡±Can your app run that way?
Worker Role Programming ModelBasically DLL with main()In .NETOnStart() ¨C initializationRun() ¨C mainOnStop() ¨C graceful shutdownExpected to run forever
Additional Azure featuresLocal storageDeployment procedureTracing and diagnosticsLocal test environment
Gotcha!WCF and maxClockSkew64 vs. 32 bitAuthentication (userNameOverTransport)Streaming (of binary data)COM interop
LinksInteroperability:http://www.microsoft.com/WindowsAzure/interop/Azure Storage Explorer:http://azurestorageexplorer.codeplex.com/Azure samples:http://code.msdn.microsoft.com/windowsazuresamples
Questions?

More Related Content

Native code on ms azure platform

Editor's Notes

  1. MS Azure supports .NET managed code by default ¨C that¡¯s fineBut we need to support legacy applications or port existing applications to the cloud!
  2. Consider existing Azure building blocks
  3. Consider existing Azure building blocks
  4. Consider existing Azure building blocks
  5. Describe my task and existing pattern which was used
  6. Describe holistic approach of the application:Native C++ code for computational tasks (on server)Native C++ code on client side for interaction with existing unmanaged application
  7. Requirements for running legacy code on Azure
  8. How to implement Worker Role
  9. Useful features of Azure
  10. How to avoid pitfalls