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

Catch and Abort before Dispose
29 May 2009, 08:57:00 AM
My WCF service client kept giving me the generic fault message.The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state. I enabled fault text in the configuration ...
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