Why something like following is not allowed. I mean why the following method will not be exposed in the web service.
[WebMethod]
public static string Foo()
{
return "bar";
}
It will be great if you can provide me a non language specific high level answer rather than something like "Proxy Objects can not call static methods".