I have a WCF Service (net.tcp) that exposes a Contract:
[ServiceContract]
public interface IMyContract
{
[OperationContract]
void DoSomething(MyComObject.ISomething obj);
}
and the implementation would be something like this
public class MyContract : IMyContract
{
void DoSomething(MyComObject.ISomething obj)
{
obj.YouDoSomething();
}
}
but when the client tries to call DoSomething I get a Serialization exeption, I understand that even if MyComObject.ISomething can be serialized I wouldn't be able to call methods because only the data is serialized, my question is, is there a way to do this?
