Author: trans642 | Posted on: 9/16/2009 11:35:19 AM | Views : 680

Hello,
I have the following class declaration 
[DataContract()] public class LeaveTimeRuleWCF : BaseWCF { [DataMember] public int UniqueId; [DataMember] public DateTime StartDate; } This class is used as paramter in my public WCF service method ; [OperationContract] public int Update(LeaveTimeRuleWCF a) { ...... }  
While calling the method I am getting the below shown error
 
Any idea hiow to fix this ?
 
...

Go to the complete details ...