Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.
2
votes
4answers
101 views
+50
Log entire SOAP request or only parameters in it?
I have synchronization application that sends requests to web service every 10 seconds and makes some data chengings in local database and vice-versa. For my convenience and for solving of some ...
3
votes
0answers
80 views
+100
ChannelFactory bug with dynamic arguments
This question is related to Bug in the dynamic language runtime in combination with IIS 7.5
ChannelFactory hangs if I provide it with a correctly typed dynamic object.
dynamic src = "MSFT";
var ...
0
votes
1answer
42 views
+150
Different SOAP Headers in request/response using Message Contracts
I'm building some services which have a common header. This header has a certain layout in the request, and a different one in the response (i.e., there are two classes).
However, when I add a ...