代码改变世界

随笔档案-2012年6月5日

webserice bug大全

2012-06-05 11:06 by omgee, 446 阅读, 收藏,
摘要: 1.调用webservice经常会出现因 URL 意外地以“/HelloWorld”结束,请求格式无法识别”的错误,那是因为webservice没有指定提交方式,post还是get只要在web.config的 <system.web> 节点下加入 <webServices> <protocols> <add name= "HttpPost " /><add name= "HttpGet " /> </protocols> </webServices>就好了,但一般还是不行 阅读全文