Questions tagged «wcf-rest»

9
无法在jQuery.ajax中将content-type设置为'application / json'
当我有这个代码 $.ajax({ type: 'POST', //contentType: "application/json", url: 'http://localhost:16329/Hello', data: { name: 'norm' }, dataType: 'json' }); 在提琴手中,我可以看到以下原始请求 POST http://localhost:16329/Hello HTTP/1.1 Host: localhost:16329 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2 Accept: application/json, text/javascript, */*; q=0.01 Accept-Language: ru-ru,ru;q=0.8,en-us;q=0.5,en;q=0.3 Accept-Encoding: gzip, deflate Connection: keep-alive Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Referer: http://localhost:14693/WebSite1/index.html Content-Length: 9 …

6
我们可以创建自定义HTTP状态代码吗?
我有REST和WCF服务,并希望根据操作发送自定义状态代码。 例如,当某些验证失败时,我想发送HTTP 444;当授权失败时,我想发送HTTP 455 问题是我们如何对SOAP和REST Web服务进行验证。 在客户端上,错误代码如何起作用,因为当您从WCF服务发送HTTP 400/500(使用SOAP)时,客户端上会抛出一个异常,显示状态代码。 现在,如果我发送新的自定义状态代码,客户端将如何处理?
92 c#  asp.net  wcf  http  wcf-rest 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.