tags:

views:

59

answers:

1

I am having a very frustrating problem with the WCF test client. When I build my WCF service locally and debug I am able to test it in the test client app. However, when I make a change, sometimes even completely removing a service method, it absolutely will not refresh. It's like it's caching a copy of the service somewhere. I have tried everything, closing and re-opening the test client, VS, etc....

What gives?

A: 

Are you manually right clicking on the service reference and selecting Update Reference?

It won't automatically update your service proxy...you have to tell it to go back out and check for changes.

Justin Niessner
Yes I am. This is really strange.
Bob
How did you reference the service initially?
Justin Niessner
Debug in VS, launch wcftest, then add a service reference using something like http://localhost:12345/MyService.svc
Bob