This is the second article of ASP.NET Bad Practices: What you shouldn’t do in ASP.NET series of blog post. You may want to take a look at the first article here. Now let’s carry on to discuss the next 5 taboos in ASP.NET.
*in the production
You can read the post by Scott Gu and Scott Hanselman on how serious this bad practice is.
Always set debug=“false” in the production
*By default, web.config transformation will transform the debug to false during publishing. So don’t try to be naughty by turning it to true.
Using static variable in ASP.NET improperly
UNLESS you know what you’re doing and the impact
Read only scenario => use const or readonly
Maintaining value when post back => use viewstate
Maintaining value across multiple page => use session
To cache the data => use cache
Static variable is useful when:
It will be called N times, while N denotes page sizes
If your page size is relatively small. But still be careful!
Breaking the stack trace unnecessarily when re-throwing exception with “throw ex”
You really expect the outcome
Storing clear-text password in config files
aspnet_regiis -pe "connectionStrings" -app "/SampleApplication"
Ok, I think we’re good to stop here today. Shall continue this again in the next post. See you!
I’ve been blogging for Windows Azure stuff for the past 3 years. Nonetheless, I’m still catching up .NET and its family pretty closely.
We’ve been listening to the best practices so far from anywhere (such as MSDN, conferences, blogs, etc.). But whether to follow the best practices or not could be another side of the story. Today, I’m gonna blog something special (at least to me). Not best practices, but bad practices. Aha! This serves as the warnings to you when developing ASP.NET application, things that you shouldn’t do in ASP.NET.
I’ve been gathered quite a few bad practices from various sources including personal experiences, feedback from colleagues, online articles and blogs, presentations, MSDN, and so many more. I’ll be discussing 5 of them first in this post will catch up more in upcoming posts.
Don’t get me wrong when you see the title. I’m not saying to use ASP.NET is a bad practice. Not even saying that ASP.NET is bad. To me, ASP.NET is awesome web development platform and I really love it. In fact, some of the web vulnerabilities or shortages has been answered and covered by ASP.NET by default.
Unfortunately, sometimes there’re always misuses, overuses, abuses, or deprecated features that we should really paying attention to. Coz they really can be timed-bomb in your house and make your days worst.
Most of them within the discussion here are ASP.NET related. However, you might see some of them are pretty generic web programming mistakes / bad practices, which also applicable in ASP.NET.
Additionally, you will also find some that are generic in .NET which applicable in others .NET app, not only applicable in ASP.NET. But I believe they’re significant enough to be in the discussion.
Alright, now let’s go for them now!
This is very fundamental yet frequently-made mistake. The impact might be pretty serious if it’s combined with others bad practices (discussed subsequently)
string cmd = string.Format("SELECT ProductId, ProductName, QuantityPerUnit, UnitPrice FROM PRODUCTS WHERE ProductName like ‘%{0}%’", searchText);
sqlCmd.Parameters.Add(new SqlParameter("@ProductName", txtProductName.Text));
![]()
http://images.colourbox.com/thumb_COLOURBOX3461207.jpg
Okay, that’s all for the part 1. Check out again the part 2 soon.
27th April 2013 was an awesome day! Why? On that day, we have events for more than 96 locations, 154 speakers, 194 sessions, and 7432 attendees. That’s what we called Global Windows Azure Bootcamp. Cool, isn’t it?
We also ran one in Singapore, participated by about 70 attendants. Although it was a rainy Saturday morning, the attendants are all very passionate. Deeply appreciate it guys!
We started the event with welcome not from me and Faizal as the founders of the Windows Azure User Group Singapore. We talked briefly about how the UG was started, some statistic on Global Windows Azure Bootcamp, Sponsors, and Agendas of the day.
Right after the welcome note, Hammad started his session of Windows Azure – State of Union. Hammad did a great job to describe the overview of the entire Windows Azure core components and building block.
The second session was delivered by Faizal about Windows Azure Web Site. The session was more demo-centric and covers many ways deploying website on Windows Azure Web Sites (code name Antares).
After lunch, Hammad continued his next topic about Azure Mobile Service. Regardless what mobile platform you’re using (iOS, Android, Windows Phone), Mobile Services takes care of the backend for you.
The subsequent one was my session that describe about Windows Azure Cloud Services. But I took a different approach of delivery.
The first part illustrated about the basic concept of Windows Azure Cloud Services including the roles, service model, SDK, and deployment. I believe people would love the second part more as I illustrated on of the project as the case study. How to design a cloud application with various component on Windows Azure.
The last session was delivered by Richard Qi, the infra guy. Richard explained Windows Azure IaaS covering Virtual Machine and Virtual Network. He also covers a few possible scenario to deploy key server apps such as SQL Server and SharePoint on Azure VM.
And here’re some of Microsoft & MVP folks, thanks for your assistance on the event as well.
After all sessions were done, we spent some time to have the lucky draw, sponsored by global sponsor. And here are some of the winners. Congratulations
We would like to thank a lots of people to make this happen successful:
And finally here’s our group photo!

Hope to see you again in the upcoming meet-ups and event.
Cheers,
Wely
For the last recent years, online gaming industry keeps growing tremendously. The advantages are very obvious:
People literally port any kind of games to online space. There are poker card games (such as partypoker.com), arcade, sports, RPG, and so many more.
Likewise some of the system that may experience burst (either predictable or unpredictable), online gaming would face the similar challenges as well.
I believe the following scenarios are not a stranger to you. They are a few patterns that suits most for cloud computing.
Figure 1. Perfect scenario for cloud!
Many gaming companies are aware of the power of the cloud and have started to build new or migrate the existing game on Windows Azure.
1. Halo 4
One of the very popular example would be Halo 4. Apart from using high computing power, it also uses Service Bus as messaging engine.
2. Gameizon
Gamizone is another case study of online gaming company that utilize Windows Azure improve service, simplify IT maintenance, and obviously reduce costs.
3. Waappy
Waappy was is online gaming company that make use of Windows Azure to accommodate the demand that grew periodically
For those who are not aware, Microsoft also released Windows Azure Toolkit for Social Gaming, a set of guidance, samples, and tools that helps developers quickly get started building a casual or social game on Windows Azure.

Check out the tutorial on Cloud Cover Show and an introduction to tankster here.
Download from GitHub https://github.com/WindowsAzure-Toolkits/wa-toolkit-games
Happy gaming with Windows Azure!
I’m pleased to announce AzureUG.SG (Singapore Windows Azure User Group) is taking part to conduct an Azure Boot Camp in Singapore together with other UG from more than 66+ location world-wide.
This’s gonna be an interesting one as we’re all doing one-day boot camp at Saturday, 27 April 2013!
Here’s the flyer!
Remember to register yourself at http://gwabsg.eventbrite.com.
See you!
It is a pretty common practice to use an IP address to provide access on whitelisting service. As an example a trading partner Contoso only allows my company Northwind to access their web service. Only the predefined IP address will be accepted by Contoso while others will be denied.
The question now is: Am I able to preserve the IP address of my Windows Azure application in the cloud environment? This article is to explain how to preserve a static IP address for both PaaS and IaaS.
While there is internal IP address being assigned to each VM, this article emphasizes on public VIP (virtual IP address). We don’t really care about the internal IP address since it’s invisible to external parties.
In PaaS, the IP address is assigned on the deployment (either production or staging) of our service package. The IP address will be stay static through the lifecycle of service deployment. As of today, there’s no way to reserve an IP address outside the lifetime of the deployment:
“Windows Azure currently does not support a customer reserving a VIP outside of the lifetime of a deployment.”
The following diagram illustrates how the deployment looks like:
Thus, please be reminded that do not delete the deployment if you want your IP address to be persisted. You should always consider using in-place upgrade or VIP swap to keep the public VIP.
There is only production deployment in IaaS Virtual Machine. The IP address is assigned when a VM attached to an empty cloud service.
The left hand side of the following figure shows the assignment of a public VIP when VM 1 is being created. The right hand side of the figure shows that there isn’t any IP address change when a new VM attached to the existing cloud service.
What if you really need to delete a VM but you don’t want to lose the public VIP? The workaround is to deploy a “dummy” VM for a time being until the new deployment is done. This will ensure that your public VIP will be retained.
To conclude, this article explains under certain circumstances, you will lose or will not lose the public VIP of your Windows Azure service. It also covers both PaaS and IaaS on how they differs each other on deployment management. Hope this gives you better insight on managing your Windows Azure public VIP.
Aha, I’m back to Singapore after a long long flight from Seattle. The trips was actually to attend 2013 MVP Global Summit from Feb 18 – 21 in Redmond and Bellevue.
The MVP Global Summit is a multi-day event that is hosted in Bellevue and at Microsoft headquarters in Redmond, Washington. With a large catalog of technical sessions and a variety of networking opportunities, the MVP Global Summit enables MVPs to connect with other MVPs, build relationships with Microsoft product managers, and provide feedback on Microsoft products and technologies.
Source: http://www.2013mvpsummit.com/about
I departed from Singapore with fellow MVPs (Triston Wan, David Lim, Jeffrey Tay, Riwut Libinuko) and later joined by Alvin Lau who missed the departure flight.
It took about 6.5 hours from Singapore to Tokyo/Narita and another 9 hours from Tokyo/Narita to Seattle/Tacoma. It’s indeed a long and tiring flight. Interestingly, we departed at 08:30 AM from Singapore and arrived at 09:00 AM in Seattle because timezone difference.
The registration started at 17 Feb 2013 in Hyatt Regency Bellevue where we would verify ourselves to get the conference pass. On the afternoon, there was MVP Showcases. It was awesome to see world-wide MVPS showcasing their projects and products.
My favorite one was done by Korean MVP (HugeFlow). It’s to capture our photo which automatically sync to Surface Board. We could furthermore edit the photo using different digital stamps. It will then be sent through email or printed out as hardcopy. Well, that’s pretty simple but it’s interesting!
Here’s a sample.
We have very very pack sessions everyday from 8 AM till 6 PM. As most of the contents are Microsoft NDA, I’m not able to disclosed anything here
.
But I would say it was a very great exposure to interact with Microsoft Product Group (program managers, development leads, and top executives), understanding the product roadmap and strategy.
Here’s a shot with Scott Guthrie, Corp Vice President in Microsoft Server and Tools Business. Although at his senior position in the corporation, he is still very humble and such a nice person to chat with.
He always listens to communities and customers expectation. I believe that’s the reason why he is respected by many people in communities.
While sharing Microsoft strategy and roadmap, Microsoft also gathers various feedbacks from MVPs, the practical experts in the industry.
In addition, it was also a good chance to get to know and network with others MVPs coming from different parts of the world.
Aside of technical sessions in the morning till afternoon, we have numerous of parties and networking sessions in the evening. That varies depending on our MVPs competency and origin as well. And here are mine:

The last photo was with Captain Identity (who recently promoted to Admiral Identity), Vittorio Bertocci.
All in all, it was fun and enjoyable experience. Hope to attend another MVP Summit in the future.
Cheers!
We’ve seen the basic concept of Azure IaaS in my last article. This article will take a deeper look at how Images and Disks are being used in Windows Azure Virtual Machine. Later in the article I’ll bring you another tutorial to let you have better understanding and hands-on experience.
There are two basic yet important concepts in Windows Azure Virtual Machine: Images and Disks. Although both of them are eventually in VHD format, there are significant differences between them.
Images are virtual hard drives (VHDs) that have already been generalized (technically, beensys-prepped /generalize). They are basically templates that will be used to clone the Virtual Machine. They come without any specific settings such as computer name, user account, and network settings.
Windows Azure provides numbers of predefined images including Windows and Linux. The following figure shows the predefined images on Windows Azure as of today.
Figure 1 – Virtual Machine Platform Images
Apart from predefined image, we can actually provide our own images as well. This will be certainly useful when we want to reuse the configured VM in the future. It could be done either by capturing a running VM on Windows Azure or uploading the VHD On-Premise with CSUPLOAD.
Both techniques require us to sysprep the VHD properly. Eventually, the image should be created in the portal.
Figure 2 – Creating Image from VHD
Disks are the actual VHDs that are ready to be mounted by the Virtual Machine. There are two kinds of Disk: OS Disk and Data Disk.
OS Disk is a VHD that is being instantiated by an image and obviously contains operating system files. At the time a VM is being provisioned, the OS Disk will be automatically created and mounted as C:\ drive.
The default caching policy for OS Disk is enabled for ReadWrite. Meaning that, although the OS Disk is stored at Windows Azure Storage as Page Blob, there will be a caching disk sitting on the host OS. At any time reading / writing happens on the OS Disk, it will always reach the caching disk first and gradually flush them to Blob Storage. The reason why ReadWrite cache being enabled for OS Disk is because the usage pattern that Azure team expects. As the working sets of data being read and written are relatively small, it fits perfectly to have a local cache so that it can perform efficiently.
The maximum size of OS Disk is 127 GB as of today. The recommended approach is to let customers store larger data in the Data Disk.
Data Disk is VHD that allows us to store any data. The Data Disk can then be mounted on the VM. T As the data disks are stored in Windows Azure Blob Storage as page blobs, it inherits from the maximum size of 1 TB. However, there are limits on how many disk can be mounted. This depends on the size of Virtual Machine as presented below.
Figure 3 – VM Size for Azure VM
(From WAPTK – WindowsAzureVirtualMachines.pptx slide 16)
The default caching policy for Data Disk is “None” or No Cache. This means that when any reading or writing happens, it always goes directly to Blob Storage.
Apart from OS Disk and Data Disk, there is also a temporary disk stored in the VM itself. This is used for the OS Paging file. Importantly, the disk is considered not persistent.
The following diagram illustrates how the disks are being stored in Windows Azure Storage.
Figure 4 – How disks are stored
We have talked about the concepts above. Now let’s jump into the demo to see them in action. I assume you have gone through the tutorial in my previous article, please do so if you have not.
1. Log in to New Management Portal with your Live Id. After successfully logging in, navigate to the Virtual Machine section and you will see the Dashboard tab appear. At the bottom part of Dashboard, you will notice the “disk” section. By default, there is only one disk attached, which type is OS Disk. If you notice carefully, the OS Disk VHD refers to Windows Azure Storage URL.
Figure 5 – Virtual Machine dashboard
2. Now, click on the “Attach” button and select the “Attach Empty Disk”.
Figure 6 – Attaching Disk to VM
As the dialog box show up, define the File Name as “DataDisk1” and Size as “1023”.
Figure 7 – Attaching an Empty Disk
It may take a while (2 to 3 minutes) to get the Data Disk ready.
3. Repeat Step 2 one more time. Define File Name as “DataDisk2” and let the Size remain the same as “1023”.
4. After a while, you can see that there are two additional data disks being attached besides the original OS Disk.
Figure 8 – OS Disk and Data Disk on VM
5. Click “Connect” to remote desktop inside the VM. When the RPD file is prompted, simply open it.
6. Once you have successfully remote desktopped inside the VM, open up Server Manager and expand the Storage – Disk Management Menu.
7. You might be prompted with the Initialize Disk dialog. This dialog appears since we have just attached two disks on the VM but haven’t initialized them yet. We are required to select the partition type either: MBR and GPT. In this demo, we select “MBR” and click “OK”.
Figure 9 – Initializing Data Disks
The earlier section of this article mentions that the maximum size of each blob is 1 TB. People often make the mistake of thinking that the maximum size of data you can store in Azure Disk is 1 TB. This is not really true, as we can actually store up to 16 TB data (for Extra Large VM). The idea is to use Striped Volume in Windows.
8. Right click on “Disk 2″ which we have just initialized and click “New Striped Volume”.
Figure 10 – New Striped Volume
9. As the dialog comes up, add the “Disk 3” on the Available list and click “Add”. Click “Next” to proceed.
Figure 11 – Adding Disk to Striped Volume
10. Choose your preferred Drive Letter. In this example, I selected E. Click “Next”.
Figure 12 – Assign Drive Letter or Path
11. The next step is about formatting the volume. Simply give the volume a label. In this case, I call it DATA. Click “Next” to finalize the wizard
Figure 13 – Defining Format Volume
12. Open up Windows Explorer, notice that the DATA Volume can take up to 2 TB size as they are basically stored in two different Data Disks.
Figure 14 – Result of striped disk
We’ve seen how the image and disk being design and used in Windows Azure Virtual Machine.
In the subsequent article, we will discuss other aspects of Windows Azure IaaS in more detail such virtual network capabilities and also how PaaS and IaaS work together to bring more possibilities.
Technical Reviewer: Corey Sanders, Principal Program Manager Lead, Microsoft Corporation.
- Windows Azure Platform Training Kit
- Mark Russinovich – Windows Azure IaaS: Virtual Machine and Virtual Network
This article looks at the journey Windows Azure has taken from when it was first launched as a PaaS, to the newly announced IaaS offerings. In the later part of this article, I’ll also provide a quick, hands-on tutorial on how to set up a Windows Azure Virtual Machine.
As many of you might be aware of Microsoft started Windows Azure with PaaS (Platform as- a Service) model, generally available in February 2010.
With PaaS, Web and Worker Roles were introduced, customers only had to take care of the application and data, not the operating system and infrastructure. The stateless Virtual Machine (VM) concept was also brought into the picture. This means at the runtime, each VM should not store the data locally as it’ll be gone if the VM is reincarnated due to unexpected events, such as hardware failures. Instead, data should be stored in persistent storages such as SQL Database or Windows Azure Storage.
One primary advantage of this model is scaling in and out could be easily done. In fact, it’s just a matter of changing a parameter and within a few minutes the VM(s) will get provisioned.
Figure 1 – Scaling in Windows Azure PaaS “Cloud Services”
Although since its launch many customers have adopted Windows Azure as a cloud platform, there have also been many unsuccessful deals because of various stumbling blocks, especially when migrating the existing applications to the PaaS model. The following summarizes two major challenges:
1. Migration and portability
When talking about the effort involved in migration, a lot of it depends on the architecture of the application itself. I’ve written a series of articles on moving an application to the PaaS cloud model.
If you’ve decided to migrate your application to the PaaS regardless of the effort, what about bringing them back to on-premise? It might take more effort again. Alternatively, you could maintain two copies of your application source code.
2. Stateless virtual machine
Although there are some techniques to install third-party software on Windows Azure Stateless VM, the installation could be only done when setting up the VM; any changes at runtime wouldn’t be persistent. This restricts customers to install and run state-full applications on Windows Azure.
With feedback from customers and communities, an initiative of supporting Infrastructure as a Service (IaaS) was finally announced on 7 June 2012 at the Meet Windows Azure event. This is an awesome move by Microsoft bringing more powerful capabilities to the platform and also competing with other cloud providers. Exciting news to customers!
Typically, the support of IaaS is implemented with Windows Azure Virtual Machine (WAVM). The major difference between this newly launched IaaS VM and PaaS so-called “Cloud Services” VM is the persistence. Yes, the IaaS VM is now persistent. Meaning that, any change that we perform at runtime will stay durable although the VM is reimaged. Aside from WAVM, the IaaS offerings are also supported with various new networking features. They offer a rich set of capabilities to establish connection amongst cloud VMs and also between cloud VM and on-premise network infrastructure.
Disclaimer: at the time this article was written, Windows Azure IaaS offerings including Virtual Machine are still in Preview. As such, any changes might be applied till the GA (general availability).
Windows Azure Virtual Machine utilizes the fantastic backend Windows Azure Storage. As such, it inherits the highly-available benefit so that the VM image is replicated for 3 copies.
Figure 2 – Windows Azure Virtual Machine on Blob Storage
(Source: MS TechEd North America 2012 – AZR201.pptx – Slide 30)
The VM is represented in a standard and consistent form of VHD file. Thus, the VHD can be effortlessly moved from an on-premise virtualized environment (Hyper-V) to Windows Azure or the other way around, or even to other cloud providers. This gives the customer lots of mobility, portability, and no lock-in experience.
Figure 3 – Image Mobility
Windows Azure Platform Training Kit – WindowsAzureVirtualMachines.pptx – Slide 11
Windows Azure supports several versions of Windows Server and several distros of Linux as can be seen in the figure below:
Figure 4 – Supported OS in Windows Azure Virtual Machine
(Source: Windows Azure Platform Training Kit – VirtualMachineOverview.pptx – Slide 7)
Some of you might be surprise to see Linux distros are on the list. This proves that Microsoft is now heading in an open direction to reach more Microsoft and open-source customers.
0. This tutorial requires you to have Windows Azure subscription. If you don’t have one, you can sign up the free trial here. As Windows Azure IaaS is still in Preview at the moment, you are required to request the preview features here. It might take some time for them to grant you the preview features.
1. If you are ready with the subscription and preview features, log on to new Windows Azure Management Portal with your live ID and password. You will see the following screen if you’ve successfully logged in to the portal.
2. To create a Virtual Machine, click on the “+ New” button located in the left bottom corner. When the pop-up menu shows up, select Virtual Machine in the left hand menu and select FROM GALLERY.
3. (VM OS Selection screen) It will then show the available OS images. Let’s choose Microsoft SQL Server 2012 Evaluation Edition. This is basically Windows Server 2008 R2 with SQL Server 2012 Evaluation Edition pre-installed.
4. (VM Configuration Screen) The subsequent step requires us to fill in the VM configurations. Please remember your password; you will need to use it again in later steps.
5. (VM Mode Screen) This screen allows you to define how and where your VM will be stored. Choose the STANDALONE VIRTUAL MACHINE option and enter your preferred DNS Name for you service. As mentioned above, WAVM will use Blob Storage to store the VHD. This screen allows you to choose the Storage Account, Affinity Group, and Subscription.
6. (VM Options Screen) This screen requires you to define the Availability Set of your Virtual Machine. Just simply click accept button image, leave the configuration as default. I will explain more about the Availability Set in a subsequent article.
7. If everything goes well, you will see the VM is being provisioned.
It might take few minutes for the VM to be ready; you will see the status change to Running. You can then click on the VM to see the details.
8. Clicking “Connect” will download a RDP file. Open the RDP file and you should see the Windows Security pop up. Enter the password that you specified in step 4.
9. When it prompts you with the certificate error, just simply accept it by clicking “Yes”.
10. As can be seen, I’ve successfully RDP-in to the VM. Most importantly, any changes that we do now (at the runtime) will be persistent.
You can also see that SQL Server 2012 is pre-installed for us.
In the next article, we will continue to look at Windows Azure Virtual Machine in more detail, including disk and images concepts, networking features, the combination of PaaS and IaaS, and so on. Stay tuned.
Windows Azure Storage is one of the core components in Windows Azure that offers a scalable, highly available, and competitively priced storage option. Amongst others abstractions in Azure Storage (Table Storage and Queue Storage), Blob Storage is perhaps the most widely-used service. Blob Storage allows us to store any unstructured text and binary data such as video, audio, images, and so many more.
Blob Storage can either be accessed through the API programmatically or explorer tools. This article discusses and reviews several popular explorer tools for Blob Storage.
The reviews and ratings are entirely my individual opinion and preference. The reviews and ratings are based on my personal experience when using each product, and what I consider important.
This review will examine these products using the following four dimensions:
For each measurement, I’ll provide a brief description and rating ranging from 1 to 5. 1 means the product provides a poor experience or lacks capability, 5 means the product provides awesome proficiency. Additionally, I would be also giving a N/A (not applicable) for the product that doesn’t have any applicable features.
We start the review with Cloud Storage Studio 2 (CSS2) from Cerebrata, a company acquired by Red Gate last Oct 2011. CSS 2 is an exploration tool not only for Blob Storage, but also for Tables and Queue Storage.
The product costs $195 for a Professional License (volume discounts apply). Customers are encouraged to try it out with a 30-day free trial.
CSS2 provides a powerful UI grouping concept and navigation, enabling users to group related storage accounts and subscriptions together – as can be seen in the Figure 1.
Figure 1 – Cloud Storage Studio UI
The Navigation (in red) and Tabs (in yellow) area look good to me. However, I find the Explorer Area (in blue) is tedious. Copying files and directories will prompt a dialog box that only allows us to copy the blobs within the container only as can be seen in Figure 2. I believe there should be more intuitive way to implement this.
Figure 2 – Cloud Storage Studio Copying Blobs
Rating: 3.5
I would say it satisfies most of the basic needs when dealing with Blob Storage. Starting from managing containers, displaying directories, all the way down to individual blob level are all properly supported.
CSS2 provides powerful settings that enable users to easily define the configuration settings.
Figure 3 – Cloud Storage Studio Configuration Settings
Rating: 4.5
One of the features that I like most in CSS2 is the graphical UI for Storage Analytic Logging and Metric. It provides a really expressive experience and has a good look and feel.
Figure 4 – View Storage Analytics Data
Rating: 4.0
CloudXplorer is a lightweight yet handy explorer tool from ClumsyLeaf Software. It has been very popular and has been used by many people including Microsoft folks in various events.
CloudXplorer is entirely free-of-charge, downloadable from here.
CloudXplorer comes with Windows Explorer-like user interface, providing a friendly experience, especially for Windows users. Uploading and downloading Blobs are implemented with “Copy / Cut and Paste” experience, and the same when dealing with our local files.
Figure 5 – CloudXplorer User Interface
I would say it satisfies most of the basic needs.
I don’t find any options for user to define advanced configuration and settings.
Unfortunately, I also didn’t find any fancy features in CloudXplorer.
Rating: N/A
The last product I’m reviewing is the CloudBerry Explorer. CloudBerry Labs offers many great products focusing for explorer tools and online backup for various cloud providers such asAmazon AWS, Windows Azure, and RackSpace.
Furthermore, CloudBerry Explorer supports multi-languages: English, Chinese, and Japanese. The product comes in two versions:
Check out the following for the comparison between the two.
Figure 6 – CloudBerry Explorer User Interface
Like the other two tools, I would say it satisfies most needs.
CloudBerry Explorer also provides a powerful and flexible option for user to configure settings such as setting bandwidth, chunk size, encryption, etc. However, I notice that a few of the features such as encryption and compression are only available in PRO version.
Figure 7 – CloudBerry Explorer Options
My favorite feature of CloudBerry Explorer is Compare and Sync Folders. This is an extremely useful feature enabling us to compare and sync either cloud or local folders. As seen in the screenshot below, the tool shows the comparison result between the two displays. Then we can finally define to either sync left to right, right to left, or in both directions.
Figure 5 – CloudBerry Explorer User Interface
We have gone through three explorer tools for Windows Azure Blob Storage. I would say all three products are pretty awesome. There are always advantages from one to another. The following table summarizes reviews and ratings that we’ve come across.
In conclusion, if you need a simple and lightweight explorer, CloudXplorer is probably the way to go. However, if you need more flexible settings and innovative features, you should consider Cloud Storage Studio or CloudBerry Explorer.

Categories
Tag Cloud
Blog RSS
Comments RSS
Last 50 Posts
Back
Back
Void
Life
Earth
Wind « Default
Water
Fire
Light 