I'm pretty new in Azure and I want to create a simple .Net application (in C#) with one web role and one worker role to upload and resize images. I've already made a galery in the web role. It creates a blob then uploads the pictures there, then shows them.
What I want to do now: Sending a message throw a queue to a worker role if any of the pictures are too big then resize them in the worker role. My promblem is that I can't see how to access the same blob which was created in the web role (first I want to access to it in the local development emulator). If I add a new entry in the worker roles properties --> settings page that will give me a completely different blob connection string, doesn't it?
Thanks for any help.