C#片段:
[WebInvoke(UriTemplate = "TestPost", ResponseFormat = WebMessageFormat.Json)] public String TestPost(String LoginUserName) { return "Post:" + LoginUserName; } [WebGet(UriTemplate = "TestGet/{LoginUserName}", ResponseFormat = WebMessageFormat.Json)] public String TestGet(String LoginUserName) { return "Get:" + LoginUserName; }
URI:
get方式
http://yxcww.cn/OSService/TestGet/123
post方式
http://yxcww.cn/OSService/TestPost
补充:
get和post方式,在C#客户端,都可以请求成功。
post方式,假如用java,不传递参数的时候可以成功,但是传递参数就会报错。
解决方案
25
同求。