I have WCF service operation which accepts Interface as a input type. While calling this service operation from jQuery Ajax, I'm getting message "The server was unable to process the request due to an internal error". The jQuery code works file if the input type is concrete class. Please tell me if there is any way to achieve this kind of implementation.
[ServiceContract(Namespace = "")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class TestService
{
[OperationContract]
[ServiceKnownType(typeof(User))]
public void SetUser(IUser request)
{
}
}