#SEQ keyword in Asp.Net Chart Management with multiple sample Azure Cloud applications

I have a simple Azure cloud application (WebRole = ASP.Net MVC) that draws charts using the ASP.NET Charting control.

Specifications →

  • Chart RenderType = ImageMap
  • Chart ImageLocation = "/ Images / Chart_ # SEQ (1000.1)"
  • Number of application instances deployed on Windows Azure = 5
  • The application contains a button that draws diagrams in accordance with the parameters of users. When the user clicks on this button, the MVC action is called, which provides the necessary ViewData for drawing the chart and returns a partial view, which, after receiving the rendering, sends the ImageMap and image location to the client.

alt text

When I try to draw diagrams from IE8, I always get diagrams according to my settings, but when I try to draw diagrams on FireFox at the same time, sometimes I get wrong diagrams (wrong images).

Is it because of using roundrobin - #SEQ (1000.1) or because of multiple instances of my cloud application?

+3
source share

Source: https://habr.com/ru/post/1734653/


All Articles