Tagged Questions

0
votes
1answer
31 views

Implement ‘Ping’ functionality using Message Inspector causes WCF runtime to throw NullReferenceException

I'm using WCF to implement a web service. This web service requires a 'ping' feature as a health monitor for each service. This functionality has been implemented using IDispatchMessageInspector and …
0
votes
2answers
82 views

WCF service proxy not setting “FieldSpecified” property

I've got a WCF DataContract that looks like the following: namespace MyCompanyName.Services.Wcf { [DataContract(Namespace = "http://mycompanyname/services/wcf")] [Serializable] public class …
0
votes
1answer
41 views

WCF Client DLL Internet Delivery Problem

We are creating a WCF service with a companion client DLL (.Net) that we will be delivering to a user's GAC via a web page. The DLL knows how to communicate with and how to interface with the service, …
0
votes
3answers
83 views

C# WCF service host question

I have a C# WCF service DLL that gets hosted by WcfSvcHost.exe when I debug. I would like to deploy this onto a machine nearby. What do I use to host this dll on the machine that I want to deploy it …