vote up 1 vote down star

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?

flag

how is it a duplicate? – pablito May 7 at 9:52

closed as exact duplicate by Brian Rasmussen, divo, Brian, marc_s, Guffa May 7 at 10:09

2 Answers

vote up 0 vote down

Through WCF, no. At least, you wont not be able to use it on both sides. Passing a normal pointer should be ok.

I would rather look at using remoting in this scenario.

link|flag
vote up 1 vote down

Personally, I would leave the COM object at the server (unrelated to the WCF contract), and use WCF to work with it only at the server:

  • No, you can't send COM over the wire via WCF
  • Remoting is not something I would recommend
  • You can change the interface to be appropriate, i.e. not chatty - so you might have a WCF method that (when called) instantiates the COM object and does 12 COM operations based on the WCF parameter(s). This minimised the round-trips over the wire, improving performance
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.