Showing posts with label CodePlex. Show all posts
Showing posts with label CodePlex. Show all posts

Monday, January 12, 2009

Azure Storage Explorer Updated

Azure Storage Explorer has been updated. Binaries and source code to "preview version 0.2" have been posted on CodePlex. This update adds some polish, has cleaned-up source code, and allows items in cloud storage to be deleted.

Friday, January 9, 2009

Azure Storage Explorer

I've been wanting an easier way to view what's in my Azure cloud storage so I decided to write a tool for the purpose. Azure Storage Explorer now exists and is available here on CodePlex.

Today Azure Storage Explorer is limited to letting you view your Azure storage (including data details of your blobs, queue messages, and table records) but eventually I'd like the tool to also allow add/rename/delete operations on storage items and import/export of data.

Here's the table storage view. Your tables are listed in the tree view at left. If you select a table, its records are displayed in the list item view at right. If you select a record, it is displayed in XML form below.



Here's the blob view. Your containers are listed in the tree view at left. Containers with no items are greyed out. Clicking on a container lists your blobs in the list item view at right. Selecting a blob shows its content below. You can use menu items or toolbar buttons to switch between a text and binary view of the data.





Here's the queue view. Your queues are listed in the tree view pane at left. Queues with no messages are greyed out. Selecting a queue lists queue messages in the list item view at right. The messages are peeked, not removed from the queue, and there's a limit of 32 messages that can be shown. Clicking on a queue message displays its data below. Again you can switch between a textual view and a binary view.





The only set up required is to specify the name and key of your storage account in the exe's configuration file.

I'll continue to improve Azure Storage Explorer over time and would love to hear feedback on it.


Saturday, November 8, 2008

My First App in the Cloud: "Whatsup"

This week I wrote my first "real" Azure app and published it into the cloud. It's called Whatsup, and is available here on CodePlex.

"Whatsup" is a simple version of the "what are you doing right now" functionality you find on Facebook and other sites. Whatsup lets you post your name and status and view the statuses of others. Here's what it looks like.




When you access the page, you see the recent status of others. If you enter your name and status and click Post, the page updates to show your status top most.

Obviously this isn't a terribly sophisticated program, but it does make a nice transition from "Hello, Cloud" to something more substantail. You can actually build this app from scratch in front of an audience and deploy to the cloud in 30-45 minutes which makes this great for user groups and training sessions.

Whatsup is an ASP.NET application that also uses SQL Data Services for storage. I had planned to leave a hosted version of whatsup online for public access, but it appears the dev Azure accounts have a 1-project limitation :( ... and I need to move on to develop more apps.