Using Remoting to Talk to another platform

  • Thread starter Thread starter tsteinke
  • Start date Start date
T

tsteinke

I am intrested in extending .NET remoting to talk to another Non .NET
C++ system. Does anyone have any experience with this?
 
It won't work. Remoting is a .Net to .Net technology. The only way you could
get it to work would be if you had a .Net component between the channel and
the C++ side, which would then need to relay messages on.

Web services are the recommended way of communicating with distributed
non-.net applications.

HTH
Dan
 
Back
Top