Windows azure web role on local IIS -
i developing windows azure web role. can host azure web role on local iis.
if yes..what steps need follow ?
local machine running on windows server 2008 r2
there 2 ways achieve that, varying levels of fidelity target environment.
the simplest run website project locally. can attach virtual directory on iis , run browser or debug visual studio. run regular iis web application, won't running web role.
the second package application cloud service , run under windows azure compute emulator installed on development machine. there several tutorials on how that, including:
- developing , deploying windows azure cloud services using visual studio - see "debugging windows azure application locally".
- run windows azure application in compute emulator
- windows azure basics–compute emulator
- building web role windows azure email service application - 3 of 5
- how-to deploy application windows azure compute emulator csrun
the compute emulator simulates several features of windows azure cloud services, yout have aware of differences between compute emulator , windows azure. application can tweak behavior according environment reading roleenvironment.isavailable , roleenvironment.isemulated properties.
Comments
Post a Comment