Click here to Skip to main content
15,868,084 members
Articles / Hosted Services / Azure

Running an EXE in a WebRole on Windows Azure

Rate me:
Please Sign up or sign in to vote.
4.83/5 (4 votes)
21 Feb 2012CPOL6 min read 58.1K   19   5
Running an EXE in a WebRole on Windows Azure

Introduction

Azure is Microsoft's operating system for cloud computing, which enables hosting and running applications on cloud. Cloud is nothing but Microsoft's datacenter. Applications are hosted in cloud in the form of roles. There are two major kinds of role: Web role and Worker role. Both the roles have different purposes to accomplish.

Web role: A part of any application which we host on IIS, should be created as web role while hosting it on cloud. Example: WCF, ASP.NET, Silverlight, etc. Web role accepts the requests directly from client and responds back. Web roles work as a bridge between application users and worker role.

Worker roles: Worker roles, as the name suggests, accomplishes tasks assigned by web roles. It runs continuously on cloud handles tasks asynchronously.

Note: More information on web role and worker role can be found at the following links:

Objective

The objective of our little exercise is to show how a non .NET EXE can be executed from a Windows Azure web role. We will build WCF service which will process a dicom image and convert into a .jpeg image or images depending on whether we input a single frame or multi frame dicom image. For the sake of simplicity, we will assume that the dicom images are already stored in Windows Azure blob storage (alternatively a different application module can have the functionality to upload a dicom file to Windows Azure blob storage).The converted jpeg images will be stored on local storage or blob and access them through Rest API.

Block Diagram

Image 1

Creating our sample application would involve the following steps:

  1. Including EXE as a part of the project
  2. Getting EXE path and parameters
  3. Download dicom file from Azure blob storage to local storage or Azure drive
  4. Run EXE in web role (WCF service)

1) Including EXE as a Part of the Project

Include EXE in a Web Role project and change the property of EXE as shown below:

pic1.jpg

pic2.jpg

2) Getting EXE Path and Parameters

Input and output parameters for the EXE are specified in string format as below.

We need to specify input dicom image path and output jpeg image folder where we want to store.

C#
//Get EXE path
Exe in a web role :  EXEPath = Path.Combine(Environment.GetEnvironmentVariable
        ("RoleRoot") + @"\", @"approot\bin\dcm2jpg.EXE");
Exe in a worker  role :  :   EXEPath = Path.Combine
    (Environment.GetEnvironmentVariable("RoleRoot") + @"\", @"approot\dcm2jpg.exe");    
//and arguments

EXEArguements = @"arguments " + output file path + " " + input file path;

Pic3.jpg

Non.NET and .NET EXE

We can run any kind of EXE on cloud.

  1. Non .NET EXE : C, C++, etc. If CPP EXE we need to add CPP runtime libraries like msvcp100.dll, msvcr100.dll.
  2. .NET EXE: C#, VB, etc. No need of adding any libraries.

3) Download File to Local Storage or Azure Drive

Dicom to jpeg converter EXE takes input dicom file path as local file system path:

Example: C:\DicomFiles\image1.dcm. 

But we have all the dicom images stored on Azure blob storage. Images can be accessed only through Rest APIs or blob URLs which cannot be recognized by our EXE as a valid path.

We have two options to solve this:

  1. Download Dicom images to Local storage
  2. Download Dicom images Azure drive

Local Storage

A local storage resource is a reserved directory in the file system of the virtual machine in which an instance of a role is running. Code running in the instance can write to the local storage resource when it needs to write to or read from to a file. For example, a local storage resource can be used to cache data that may need to be accessed again while the service is running in Windows Azure. A local storage resource is declared in the service definition file. We can declare local storage resource in service definition file.

To specify local storage size, right click on role -> properties -> Local storage->Add localStorage.

You can specify how much storage space you want. Maximum space you can allot is the size of virtual machine where that role is running.

Pic4.jpg

In service definition file,

pic5.jpg

Local storage element takes 3 attributes:

  • name
  • sizeInMB: Specifies the desired size for this local storage resource
  • cleanOnRoleRecycle: Specifies whether the local storage resource should be wiped clean when a role instance is recycled, or whether it should be persisted across the role life cycle. The default value is true.

Accessing a Local Storage at Runtime

  1. The RoleEnvironment.GetLocalResource method returns a reference to a named LocalResource object.

    Code snippet:

    C#
    //Get local storage path
    LocalResource locRes;
    locRes = RoleEnvironment.GetLocalResource("LocalImageStore");
  2. To determine the path to the local storage resource's directory, use the LocalResource.RootPath property:
    C#
    localStoragePath = string.Format(locRes.RootPath);
  3. If your service is running in the development environment, the local storage resource is defined within your local file system, and the RootPath property would return a value similar to the following:

When our application is running locally, the local storage path refers to our file system like C:\User\MyApp\localstorage\.

When your service is deployed to Windows Azure, the path to the local storage resource includes the deployment ID, and the RootPath property returns a value similar to the following:

C:\Resources\directory\f335471d5a5845aaa4e66d0359e69066.MyService_WebRole.localStoreOne\ 

Code for downloading image from blob to local storage is:

C#
//get the dcm  file from blob storage into local storage
pic6.jpg

Create a directory in a local storage to store converted jpeg files:

C#
//Create a new folder for storing converted jpeg files
//Folder name is just a Dicom Image name . Removed .dcm file extension.
pic7.jpg

Azure Drives

A Windows Azure drive acts as a local NTFS volume that is mounted on the server’s file system and that is accessible to code running in a role. The data written to a Windows Azure drive is stored in a page blob defined within the Windows Azure Blob service, and cached on the local file system. Because data written to the drive is stored in a page blob, the data is maintained even if the role instance is recycled. For this reason, a Windows Azure drive can be used to run an application that must maintain state, such as a third-party database application.

The Windows Azure Managed Library provides the CloudDrive class for mounting and managing Windows Azure drives. The CloudDrive class is part of the Microsoft.WindowsAzure.StorageClient namespace.

Once a Windows Azure drive has been mounted, you can access it via existing NTFS APIs. Your Windows Azure service can read from and write to the Windows Azure drive via a mapped drive letter (e.g., X:\).

With Windows Azure Drive, your Windows Azure applications running in the cloud can use existing NTFS APIs to access a durable drive. This can significantly ease the migration of existing Windows applications to the cloud. The Windows Azure application can read from or write to a drive letter (e.g., X:\)

Mounting Drive as Page Blob

  1. Definition file:
    XML
    <ConfigurationSettings>
          <Setting name="DicomDriveName"/>
    </ConfigurationSettings>
  2. Configuration file:
    XML
    <ConfigurationSettings>
               <Setting name="DicomDriveName" value="dicomDrivePageBlob" />
    </ConfigurationSettings>
  3. Create and Mount Drive:
    C#
    CloudDrive drive = null;
                string drivePath = string.Empty;
                CloudPageBlob pageBlob = null;
    
    pageBlob = cloudBlobContainer.GetPageBlobReference
        (RoleEnvironment.GetConfigurationSettingValue("DicomDriveName"));
  4. C#
    // Return a reference to the drive backed by the specified page blob. 
    drive = new CloudDrive(pageBlob.Uri, storageAccount.Credentials);
  5. C#
    //Creating drive and mounting it.                           
    drive.CreateIfNotExist(2048);
    drivePath = drive.Mount(0, DriveMountOptions.None);
        
    //Gets the name of the drive and path 
    IDictionary<string, Uri> drives = CloudDrive.GetMountedDrives();

4) Run EXE in Web Role (WCF Service)

To run EXE, we need to invoke a new process. Exepath is given as an input to run EXE and as we have already seen EXE takes Dicom file path as input and converted jpeg images will be stored at specified location. Detailed syntax shown below:

pic8.jpg

Conclusion

We can execute any EXE which takes different input and output parameters.

In case of worker Role queues will come into picture as worker role has to communicate with webRole for input. Windows Azure provides capabilities to execute .NET or non .NET EXEs in WebRole or WorkerRole.

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionSource code Pin
sandeep.kr.kr17-Jul-15 3:45
sandeep.kr.kr17-Jul-15 3:45 
QuestionPath.Combine Pin
fkdtz23-Mar-14 20:30
fkdtz23-Mar-14 20:30 
QuestionSolution Pin
Ardie Jarelle Malit2-Sep-13 16:50
Ardie Jarelle Malit2-Sep-13 16:50 
GeneralMy vote of 5 Pin
kotor2130-Dec-12 6:16
kotor2130-Dec-12 6:16 
GeneralMy vote of 5 Pin
Kanasz Robert28-Sep-12 5:43
professionalKanasz Robert28-Sep-12 5:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.