Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..
I've made a program in WCF. Where client send data to host. It is working perfectly whenI run host and server on same pc

my server side is
C#
host.AddServiceEndpoint(typeof(IHelloService), binding, new Uri("http://localhost:9000"));
host.Open();


my client side is
C#
var cli = new ChannelFactory<ihelloservice>(new BasicHttpBinding(), new EndpointAddress("http://localhost:9000"));
var ch = cli.CreateChannel();
</ihelloservice>


but when I tried to use that on LAN it doesn't work.I put my host pc ip at locathost but i didn't work...

please help
Posted

1 solution

You're telling your client that your service is located at http://localhost:9000 meaning on the client PC.
you have to correct the address in your client, eg. http://192.168.1.100:9000
 
Share this answer
 
Comments
XeeShaN AbbAs 20-Aug-11 5:12am    
I've tried that too my host pc ip is 192.168.30.101 but it didn't work....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900