[ASP.NET] Web Service

無法辨認要求格式,因為 URL 未預期地以 /$metadata 結束。
Request format is unrecognized for URL unexpectedly ending in ‘/$metadata’.

解決辦法,在 web.config 加入以下:

<webServices>
   <protocols>
        <add name="HttpGet"/>
        <add name="HttpPost"/>
   </protocols>
</webServices>

參考
http://forums.asp.net/p/1315924/2602929.aspx
http://stackoverflow.com/questions/654099