Technology is not science. RSS Feed

Update maxBufferSize with maxReceivedMessageSize
31 May 2009, 10:50:00 AM
I was working with a WCF service client application that failed. First, I had to modify the try-catch and using blocks. Then, I was able to see the real problem.The maximum message size quota for incoming messages (65536) has been exceeded. To inc ...
Read post

UserControl in DataTemplate must be in a Panel
27 May 2009, 09:00:00 AM
While investigating MVVM in Silverlight 2, I came across a problem putting a UserControl in a DataTemplate used by an ItemsControl. I started with the following XAML for the DataTemplate used by my ItemsControl in the page. <UserControl.Resour ...
Read post

PathGeometry Figures Property XAML Attribute Syntax in Silverlight
04 Dec 2008, 10:45:00 AM
The MSDN documentation is incorrect. In the current released version of Silverlight 2, 2.0.31005.0, you cannot use attribute syntax for the Figures property of a PathGeometry in XAML. For instance, the following will fail, throwing a XamlParseExce ...
Read post

Open New Safari Window in Silverlight
10 Sep 2008, 03:27:00 PM
I suggest following the directions found here but if you need a different solution try the following instead. Add this method to your Silverlight in a convenient place, such as your application class. public static void OpenBrowser(string url){i ...
Read post