Route WCF ServiceHost to another computer
- by I2nfo
GoodDay,
I'm not a guru when it comes to WCF, but i do know the basics.
My question is, how do i create a ServiceHost on machine X, while the code is on machine Y?
if i build and run this code on my dev machine(localhost) :
servicehost = new ServiceHost(typeof(MyService1));
servicehost.AddServiceEndpoint(typeof(IMyService1), new…