Feeds:
Posts
Comments

Archive for February, 2009

Keep your Silverlight app running fast by compressing your service responses. Imagine you’re downloading 1MB worth of text. Compressed, that same text can usually be reduced to under 200K. This reduction can be significant enough to be noticable to even clients on good internet connections and over time will save you money on bandwidth usage.

Fortunately, there’s NO need to find a 3rd party zip component or to try to do it yourself. IIS has everything all built right in, you just need to enable it.

The way it works is, the browser sends up an http header of “Accept-Encoding” with gzip and/or deflate as the value with each request to your WCF service. As long as IIS is configured correctly, the server will automatically compress the response from the service and the client will automatically decompress it before your code enters the picture. Not a single line of code is required on our part to take full advantage of this built in compression feature that works across most major browsers.

To set up IIS6 to participate you need to (sorry, haven’t tried this on IIS7):

1) In the IIS console, right click on “Web Sites”, choose properties, select the Services tab and check “Compress application files”

iis

2) Also in the IIS console, go to the Web Service Extensions folder and click the “Add a new Web service extension” link. In the dialog that appears, enter a name for the extension. I named mine “gzip”. Next, enter the path of the dll capable of zipping the responses (c:\windows\system32\inetsrv\gzip.dll), and check “Set extension status to Allowed”.

extension1

3) Run the following command lines to update metabase.xml:

CSCRIPT.EXE ADSUTIL.VBS SET W3Svc/Filters/Compression/GZIP/HcScriptFileExtensions “asp” “dll” “exe” “svc”
CSCRIPT.EXE ADSUTIL.VBS SET W3Svc/Filters/Compression/DEFLATE/HcScriptFileExtensions “asp” “dll” “exe” “svc”
CSCRIPT.EXE ADSUTIL.VBS SET W3Svc/Filters/Compression/GZIP/HcDynamicCompressionLevel 9
CSCRIPT.EXE ADSUTIL.VBS SET W3Svc/Filters/Compression/DEFLATE/HcDynamicCompressionLevel 9

4) Restart IIS (you can right click on the computer name in the IIS console, choose All Tasks, and select “Restart IIS”). Not 100% sure this is necessary.

5) Wait. It took my server on Amazon EC2 approximately 3 minutes before the changes from step #2 flowed to the metabase.xml file. You can always go check by looking at the date modified of c:\windows\system32\inetsrv\metabase.xml

In the end, you can test that it’s working by going to PipeBoost and typing in the url of your .svc file. Also, when running your app, you can use a tool like fiddler2 to show you the data actually coming down to the client along with an indicator that it is compressed.

That’s it, don’t do a think to your Silverlight app but watch it instantenously start downloading data faster!

Read Full Post »

I finally got my entry to the MIX 10K contest accepted!

The idea was inspired by MyPadlock Password Manager: a simple, secure, and free password manager developed by yours truly. The 10K entry is a fun little Silverlight app that lets you store any kind of text data behind one master password. That data is then encrypted with your password and stored in isolated storage.

Check it out

Click here to check it out. There’s a fun animation entering your password and locking it back up again (with the X in the upper right that appears once you’re in the program).

Developing this was a good test of borrowing something written in WPF and getting parts of it to run in Silverlight. Implementing the behavior I wanted was super fast and the hardest part by far was systematically destroying the readability of my code as I whittled it down from ~30K to just under 10K (with fewer than 100 bytes to spare!) I kept thinking, I sure hope I don’t have to fix a bug after I strip out all spaces, rename my variables to single characters and all the other ugly tricks I had to do to shave off those unwanted bytes.

Hope you all enjoy this fun little project and be sure to check out MyPadlock Password Manager if you’re not already using something to keep your usernames and passwords safe.

Read Full Post »

I’ve tried to avoid commentary blogging but in this case can’t help but offer a few opinions and predictions on the 3 biggest scalable hosting options today for Windows servers.

Over the last year I’ve spent a lot of time thinking about scalable hosting and working with both Mosso Cloud Sites and Amazon EC2. I’ve recently also been able to get down to business with Windows Azure hosting and have developed some opinions about how the three stack up against each other. This is by no means meant to be an exhaustive comparison of the three but merely my impressions from a 30,000 foot view on the choices for scalable Windows hosting today.

Control: Amazon EC2 offers the most control. Aside from the internal guts of EC2 and the ability to deploy multiple instances, Amazon EC2 is for all practical purposes a dedicated server. You control every aspect of it and are responsible for it as you would be for any other dedicated server. The up side to this is that if you need to install 3rd party software on your hosting environment, impersonate users, or do any number of other rare and unusual things that you can’t do on anything but your own box, you have the all the control you could want with EC2. The downside of course is that you have a lot of rope to hang yourself with and Amazon isn’t going to come to your rescue when you do so.

Ease: Mosso and Azure definitely share the prize here. Who wants to worry about installing security patches, deploying new server instances, user permissions…etc. As a developer before an IT administrator, I want to spend my time developing, not configuring and mainting servers. Let the Mosso staff (same company as Rackspace) or the folks at MS (the company that wrote Windows Server) do this work for you. Upload and scale w/o worrying about much more than your code.

Price: Both Mosso and Amazon EC2 are around $100/mo. Windows Azure pricing has yet to be announced. The big question in my mind is whether Azure will be like Amazon S3 where if you have super low usage you get charged practially nothing? With S3, I once saw a bill for litterally 1 cent! Or, is the pricing going to be like Amazon EC2, where your cost to host a site that is practially never hit still costs a minimum of almost $100/month?

Conclusion: Why use EC2 unless you need the extra control? – Which by the way, I did need the control and settled on EC2 for my latest project. But as time goes on and we rely less and less on legacy code, server component vendors start using best practices to write their components, and the standardization of web services,  more control will be necessary less often. Amazon may eventually offer something that competes with Mosso and Azure in terms of ease of use, but for now the two stand alone in this niche rivaled only by shared hosting (which of course lacks the scalability).

Azure has potential to dominate the market but this will all depend on pricing. Azure can go down the road of Mosso and EC2 and compete purely on features, or it can be priced in a way where you pay for only the horse power that you use and open the cloud computing flood gates and admit those with tight budgets. This won’t matter to many medium and large companies who need at least one dedicated server but it matter tremendously to everyone else who needs less than a server to host their applications and sites. If MS wants this audience (presumably the majority of those that need hosting), it must make it’s price scale like it’s hardware.

Some examples of who would be left out if MS takes the EC2/Mosso pricing model: imagine an entrepreneurial developer with a great SaaS idea. Either they keep their costs low until it proves itself by hostting at a place like GoDaddy or they shell out $1200 / year to make sure it can scale. Or, how about the local restaurant who isn’t shooting for an international web presense. GoDaddy can get you hooked up with ASP.NET and SQL for $4/month last time I looked. Why would you ever pay 25 times that for something like Mosso or EC2? And last, imagine the programmer who writes a simple little web service to perform some small function for an in-house app they write. Either they piggy back on some other server (probably being used for mission critical functions) or they create a special server for themselves. If you’re a developer, ask yourself: how many times have wondered or asked, “which server should I put this on?”

Here’s a chance for MS and Azure to really change the world of software and cloud computing. By choosing a pricing model that scales at the low end, they could essentially eliminate cost as a constraint to launching an application in the the cloud. Never will a developer abandon an idea because it costs too much to make sure it could scale. If they go with the Mosso/EC2 pricing model where you get charged a relatively large amount for having a nearly idle server, then the majority of programmers will be left to suffer traditional, unscalable, shared hosting a little longer while those of us with the bigger budgets will have 3 great choices for scalable Windows hosting.

Read Full Post »

I finally found some time to try out my preview account on Windows Azure and the new January CTP of the SDK and VS tools and thought I’d share some my impressions & some hurdles I ran into while getting up and running.

1) To debug your application locally you need to be running a local instance of IIS which I didn’t realize until trying to run my project in VS that I hadn’t actually added to Windows. I guess I’ve been so spoiled with VS.NET’s built in localhost that I didn’t have a need for a local instance of IIS until now. I remember the day when this was one of the first thing I did after installing Windows. Looks like a return to those days.

2) To run the development fabric (the thing that allows you to simulate and debug Windows Azure on your workstation), you have to run VS.NET as an administrator. So far I’ve forgotten everytime I’ve gone into my project and I’m sure it won’t be the last. It’s kind of a bummer when you launch VS, load your project hit F5 and Arg!… I have to start all over. Yes, I get impatient when it comes to repeating my own mistakes 🙂

runasadministrator

Note: Turning of UAC does not eliminate this.

3) I ran my app locally and all I got was a blank white page instead of my SL app or an error. Fortunately I’ve ran into this more than once now on Windows Server so the problem & solution were still lingering somewhere in the back of my head: the xap mime type wasn’t added to IIS. Once I realized this, a quick search on google yielded the solution and a minute in IIS was all it took to move to the next problem…

4) Next, I added a reference to my WCF service via the ‘discover’ feature in service references and it was added as http://localhost:12404/Service1.svc. However, the Azure development fabric actually runs the app under: http://127.0.0.1:81/. It only took a quick glance at my address bar in IE to discover this and realize that my service was probably running on port 81 too. Changing ServiceReferences.ClientConfig to the new service url was all it took.

5) Last, I received HTTP error 403.3 when trying to hit my local .svc file. This time I was prepared because of the “xap incident” (#3 above). Again, I needed to add a mime type for .svc files as well. As with the xap file extension problem, it only took a few seconds on google and I was up and running with the fix.

Finally, I was in business running locally and ready to deploy! I wanted to see my app and service running in the cloud… no time for reading documentation right!? Well the publish experience for Azure was made for people like me. I right clicked on my startup project and chose ‘Publish’ not entirely sure what to expect and was pleased to find the whole process very intuitive. Up came a web page to upload your package (.cspkg) and configuration (.cscfg) files to along with the folder where those two files resided.

Simply upload the two files and start your server instance (staging or production) and away you go. Publishing wasn’t quite as easy as publishing to an ftp site but I had no trouble figuring out what to do and in no time I had my app running in a staging environment and moments later running from my vanity url. Very cool! There was a little confusion for a few moments because after the management console reported my instance as “Started” it still took a minute or two before it worked in my browser. In the words of Axle Rose and Yoda, I just needed a little patience.

All in all, I was a little dissapointed with the experience in Visual Studio and worry about first impressions of those not as familiar with VS development. Then again, VS.NET 2008 was out the door long before Azure hit the scene, so I’d expect a little retro-fitting to be required to get VS to play nice with Azure and the development fabric. Hopefully in VS2010 it will all be much more integrated as ASP.NET apps are in VS today.

P.S. You can see the fruits of my labor on my previous post where I created an application to peer into Silverlight’s BrowserInfo and ASP.NET ServerVariables collection.

Read Full Post »