# Monday, July 07, 2008

You basically have 2 options of uploading files to the Silverlight Streaming services, either you use the application management page over at silverlight.live.com or you could use the WebDAV API and upload files via your own code.

To upload through the website you need to zip up the contents of your application and upload the entire zip file in one go. It's an absolute nail biting experience when trying to upload a 50MB file from my connection cause I know that all it takes is one little hiccup and I have to reupload EVERYTHING again.

Using the WebDAV API you can basically write a program that can upload all the files in your Silverlight application one by one onto the services, the advantage of doing so is of course you only have to reupload failed files in case of failure.

But one problem which I was having was that I kept getting an idle disconnection error whenever my upload took more than 5 minutes, and since I'm now uploading video files which are much much bigger than 2MB this was a problem. I thought it was my code but after refering to the WebDAV sample I realised that my code was similar to the sample.

Finally after testing out some more fixes and theories I think I finally found out what the problem was. So in relation to the sample provided I did the following changes.

  • Instead of reading the entire file and then writing it to the request stream in one go, I pushed chunks of it say... 64kB chunks at a time.
  • Set readwritetimeout  and timeout of the HTTPWebRequest object to integer.maxvalue (which basically means infinite timeout..... somehow I don't think this is such a good idea or really has anything to do with the actual problem, will test it with a more practical value and see)
  • and most importantly HTTPWebRequest.SendChunked  was set to true.

Setting SendChunked to true immediatelly allowed me to spend 80 minutes uploading a 25MB file so I think that should be the main thing to concentrate on.

UPDATE

After some discussions with Bill Reiss over at the Silverlight forums it seems like SendChunked is not the best way to get it to work. Setting AllowWriteStreamBuffering to FALSE and Preauthenticate to TRUE seems to work just as well, and seems to be faster too!

Monday, July 07, 2008 10:10:17 AM (Malay Peninsula Standard Time, UTC+08:00)  #    Comments [0]  | 
# Sunday, July 06, 2008

The last time I did this I told myself I'd tried to make it last for more than a year this time. See... I even wrote it down in a new year resolution. But... on June 9th 2008... I broke that resolution... And I was so close to actually making the C730 last a year...

DSC02890

Meet the HTC Touch Diamond. Yes I've come full circle back to a Pocket PC device again.... oh well.. On paper the specs for the device sound very impressive.

  • Windows Mobile 6.1
  • VGA Screen
  • First WM device to carry Opera 9.5 browser, which enables almost full desktop like browsing on the device.
  • Tilt sensor (I HATE AutoRotation features!)
  • 3.2MP Opticial Focus camera

And it sports some nifty tricks too. EPIC video review to come... once I work out the script. :P

Sunday, July 06, 2008 11:07:12 PM (Malay Peninsula Standard Time, UTC+08:00)  #    Comments [0]  | 

Here's the 1st of the 2 pieces of gear which I wanted to talk about. The Logitech Dinovo Mini Bluetooth keyboard... thumbboard. Silverlight needed to watch this video review.

I wonder, do people prefer higher quality video, but at the cost of having to wait for the video to download or do they just want to watch things as fast as possible?

Sunday, July 06, 2008 2:24:10 AM (Malay Peninsula Standard Time, UTC+08:00)  #    Comments [0]  | 
# Saturday, July 05, 2008

DSC03086

No, WZ cannot yet write words, even though he does recognize certain alphabets already. Now he just scribbles on the pad.

DSC03076

Grandma again has done an incredible job at teaching WZ how to properly hold the pen. When we see him holding it the wrong way we're supposed to tell him to hold it properly and he'll correct himself.

DSC03090

Unfortunately his word of correcting his grip on the pen is the push the tip with his left hand...

DSC03091

Which means a VERY DIRTY left hand!

Saturday, July 05, 2008 9:36:58 PM (Malay Peninsula Standard Time, UTC+08:00)  #    Comments [0]  | 
As I was following WZ around with the camera for a while I managed to capture one of the little adventures that WZ has around the house.
Saturday, July 05, 2008 9:18:50 PM (Malay Peninsula Standard Time, UTC+08:00)  #    Comments [1]  |