Monthly Archives: October 2010

Live Writer 2011

I have been using Live Writer since it was beta, sometime back in year 2007. There are 2 key reasons for me to use Live Writer. Firstly, in Malaysia not everywhere can connect to Internet easily. Lastly, inserting picture into … Continue reading

Posted in Computers and Internet | Tagged | Leave a comment

An error occurred while processing this request – WCF Data Service

In some of the operational in WCF Data Service you have hit an error message “An error occurred while processing this request”. This error message is not useful. You have to click View Detail to view the InnerException. In my … Continue reading

Posted in .Net | 2 Comments

HTTP Error 500.19 – Internet Server Error when trying to browse web service asmx file

You might see a similar screen like below. For our case it is because of the read only attribute. It should work after disable the read only attribute.

Posted in .Net | Leave a comment

Microsoft PDC 10

Missed your opportunity to attend PDC10 in Redmond? If so, you can still join in on the excitement via the live stream and in-person delivered sessions. Attend this October 28th event at the Microsoft Silicon Valley Campus – this year’s … Continue reading

Posted in .Net | Tagged | Leave a comment

Windows Azure Tools – Failed to initialize the Development Storage service.

  Windows Azure Tools – Failed to initialize the Development Storage service. If you are first time running DevFabric and see the above error, there are 3 common possibilities. 1. You do not have MS SQL 2008 Express installed. To … Continue reading

Posted in .Net | Leave a comment

Threading and Parallel Programming in C#

Threading in C# by Joseph Albahari covered Parallel Programming http://www.albahari.com/threading/

Posted in Uncategorized | Tagged | Leave a comment

SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used

If developers hit an error “SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used” in cloud application that has shown as below. Most of the developers will troubleshoot their code. Take a step back and look carefully what had … Continue reading

Posted in .Net | Leave a comment

Windows Phone 7 Development Toolkits

Many developers and users are asking “what happen to Windows Mobile development?” Windows Phone 7 Development Toolkits RTW has released. The Silverlight for Windows Phone template is added when creating a new application after toolkits is installed. In another machine … Continue reading

Posted in .Net | Leave a comment

Silverlight WCF RIA Domain Service Class – CRUD (Part 5 Delete Entity – Row)

This sample is to Delete the rows from the entity. It is quite similar to Update if you look closely at the code. 1. Add a button control name btnDelete. <Button Content=”Delete” Height=”23″ HorizontalAlignment=”Left” Margin=”218,155,0,0“ Name=”btnDel“ VerticalAlignment=”Top” Width=”60″ Click=”btnDel_Click” /> … Continue reading

Posted in Uncategorized | 2 Comments