Introduction So if you are reading this post you’ve probably discovered that when publishing a WCF service there are certain default limits imposed on the messages being sent and received. For example arrays are limited to 16384 elements, strings are limited to 8192 characters and the total message is limited to 64K. Now of course … Continue reading Adjusting WCF default message limits
Web Service
Programmatically generating web service calls
Introduction I recently wanted make a call to a third party web service without the use of a proxy class. The code shown in this post will allow you to programmatically build and submit a web service call using the HttpRequest class. Import Namespaces Add the following lines to import the required namespaces Build an … Continue reading Programmatically generating web service calls
Transmitting Images in WCF – Databinding Images in WPF
Introduction This was an interesting scenario I came across; I had a WPF application consuming a WCF service that was returning information about employees. I needed to add the ability to display a thumbnail photo of the employee. The thumbnails in question were stored alongside the other employee data in an MSSQL 2005 database using … Continue reading Transmitting Images in WCF – Databinding Images in WPF