I created a basic Silverlight WCF service from VS2008. The only thing i have changed from the auto-generated WCF service is to add a method:
public int DoWork2(int x, Version version)
{
return x;
}
If i remove the Version parameter, my Silverlight client works perfectly, but if the Version parameter is added, I get an error:
The remote server returned an error: NotFound.
I have no idea why. Any pointers?
edit: I should note that i have updated my service reference each time i have changed the methods signature.