by Vishwa
17. August 2009 09:00
Ok, so you have developed a nice WCF Service with proper implementation of custom fault exception handling, now you want to call this service in a web application or other client application and catch the fault exception in your client code. For simplicity I am using a web page, the following code is self explanatory.
[More]
2bbcec00-5dc7-4916-ac0e-d142abbbaf45|2|4.5
Tags: WCF
.NET
by Vishwa
7. August 2009 09:16
You can happily use .NET Generics in WCF Services. But when you will get the proxy of the respective service, these generics will get converted into Array, even you are using .NET to develop the client application. So now the question is how I should get back from Array to Generic List again.
[More]
1561251b-262e-42f1-87bf-abd7e2a91341|1|5.0
Tags: Tips
.NET
by Vishwa
3. August 2009 08:59
If you are using a WCF (Web) Service in client application and dealing with large data, at some point you may come across an error message:
{"The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element."} Here is the solution.
[More]