using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace WebRoleWebApp { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { lblMessage.Text = string.Format("Current Web Server machine name = '{0}'", Environment.MachineName); } } }
Yes
La documentation ARR peut être trouvée aux alentours de cette page: http://go.archims.fr/i1h69V
Of course, all this needs to be automated so that it can be used in production with Azure. For instance, when an ARR farm instance receives notifications that the configuration of the application changed, it must get the Web Role instances IP address and reconfigure ARR.
ARR Documentation can be found around this page: http://go.archims.fr/i1h69V
Benjamin
Hi Benjamin,
Session affinity for ASP.NET in Azure is a very interesting topic. Could you also write about session affinity + WCF?
Regards,
Sandrino
Sorry for this very late response. For some reason, I didn't get an e-mail notification for that comment.
For what kind of scenario would you like to have session affinity with WCF? For stateful web services (some argue that they shouldn't exist), combining WCF + WF would be the answer. A WF container in in Azure roadmap. cf channel9.msdn.com/.../SAC-867T
regards