tags:

views:

16

answers:

1

We have WCF with wsHttpBinding now want to convert it on remoting how to do ?

+1  A: 

WCF and remoting (.NET remoting) are two different technologies. Switching mean rewritting integration part of all your server components and clients.

.NET remoting is "replaced" by WCF with netTcpBinding so you should start with changing your binding to netTcp and see if your clinet will be satisfied.

Ladislav Mrnka
thanks Ladislav, I am doing that but tell me we need to change binding in both side in server and in the proxy class (client side) created by svcutil.exc
Jeevan Bhatt
Yes you have to change binding on both sides or regenerate proxy.
Ladislav Mrnka