I am new to Azure platform.
I am able to connect with the webrole.
Now how can i send data from the Worker Role, to the Web Role to display on the Website?
And how can i display the continuous TCP data which the WebRole gets, without refreshing the page or starting over?
Thanks for your Help
The best way to send data from the worker role to the web role is to have the worker role write some data to table/blob storage and have the web role poll periodically for changes to this data.
What do you mean display continuous TCP data? Do you mean like streaming a video? Two methods for that are AJAX polling or to use flash.