Search Results

0
votes

What is the best way to create a Factory Method when using WCF?

You cannot really provide factories unless you provide libraries for each of your consumers in their native languages. Instead of a factory that returns a grouping object, consider filter adding s …
1
vote

.NET - What’s the best way to implement a “catch all exceptions handler”

You can monitor most exceptions in that handler even in multithreaded apps, but .NET (starting with 2.0) won't allow you to cancel unhandled exceptions unless you enable the 1.1 compatibility mode. …
4
votes

best practice for large WCF service?

I have a post here about how individual operations should differ from traditional code operations: …
1
vote

Using strings with “general purpose” XML in WS - good or bad?

Strings containing XML is an extremely bad idea and asking for trouble. Use messages that have a defined schema.I had to rewrite significant portions of an app that used a lot of XML internally ins …