Well met,
I am trying some WCF examples. I've built the web service, and placed itas a IIS web service. It runs ok in local, but when I try to access the service from another machine, I receive that expection.
The IIS is configured to use anonymous access, so it should not need any security stuff. What can be the problem? Do I need to configure something up?
This is the client code:
| classTest |
| { |
| staticvoidMain() |
| { |
| Service1Clientclient=newService1Client(); |
|
| //Uselavariable'client'parallamaraoperacionesenelservicio. |
| Console.WriteLine(client.GetData(99)); |
|
| //Cierresiempreelcliente. |
| client.Close(); |
|
| Console.ReadLine(); |
| } |
| } |
Any ideas? :/