1
vote
WCF Security error with VS 2008 Unit Test
When you have securityMode="None" in your binding, you should turn off integrated authentication.
…
1
vote
How to write a MSTest unit test that listens for an event to be raised from another thread?
Use the WaitHandle classes in the System.Threading namespace. Either, AutoResetEvent or ManualResetEvent. The difference between the two is that AutoResetEvent lets one thread proceed each time it …
0
votes
How do you configure WCF to support FaultContracts where both the host and client are in the same process using a net.pipe?
The problem is most likely an error deserializing or serializing the request or response. Enable trace and view the log with svctraceviewer for the exact error.
Also, make sure your fault e …
4
votes
Unit Tests Visual Studio
If you click on properties on the XML file, you can tell it to copy to the output folder so that it is available in the same folder as the tests. Alternately, you could select to embed it as a reso …
