Re: how to change the default content-type

2014-02-02 Thread mulderns
There is a plugin for firefox name "JSONovich" that has an option to send the application/json accept header to specified hosts - and it displays the json nicely.

Re: how to change the default content-type

2011-05-09 Thread Robert Newson
That should read "Sending an 'Accept: application/json' header will make a browser...". There's nothing non-compliant or particularly odd about content-type negotiation. I'd even argue that application/json is the wrong content-type, a vendor code or a registered mime type of our own, would be bet

Re: how to change the default content-type

2011-05-09 Thread István
According to couchd documentation[1] this is not the reason why you are sending json with text header. to answer my own question, there is no way at the moment to change the default behavior and send app/json in the response header 1. http://guide.couchdb.org/draft/api.html

Re: how to change the default content-type

2011-05-08 Thread Alexander Shorin
This is not a problem due to you haven't specified the Accept header and not defined preferable content type. According HTTP specification [1] section 14.1, if there is no acceptable content-type then assume that client supports all media types. AFAIK, http work with mime types based on another spe

Re: how to change the default content-type

2011-05-08 Thread István
This is why i asked about the _default_ in my email, I don't want to specify it with every request. This is not even nginx but couchdb. You can try it yourself talking to couchdb without a reverse proxy. On Sat, May 7, 2011 at 5:40 PM, Alexander Shorin wrote: > Try to pass "Accept: application/

Re: how to change the default content-type

2011-05-08 Thread István
This is why it would be good to able to configure the __default__ behavior. On Sat, May 7, 2011 at 7:54 PM, Benoit Chesneau wrote: > On Sat, May 7, 2011 at 6:12 PM, István wrote: > > $ curl -D - -X GET -H "Content-Type: application/json" > > http://couch.nohup.hu/nohup_urls/c08b5c2c03d31ee767a

Re: how to change the default content-type

2011-05-07 Thread Benoit Chesneau
On Sat, May 7, 2011 at 6:12 PM, István wrote: > $ curl -D - -X GET -H "Content-Type: application/json" > http://couch.nohup.hu/nohup_urls/c08b5c2c03d31ee767ab891223000d72 > HTTP/1.1 200 OK > Server: nginx/1.0.0 > Date: Sat, 07 May 2011 16:11:57 GMT > Content-Type: text/plain;charset=utf-8 > Connec

Re: how to change the default content-type

2011-05-07 Thread Alexander Shorin
Try to pass "Accept: application/json" header instead of "Content-Type" which marks type of returned content, not requested. Missed Accept headers means all types are expectable and nginx thought that text/plain is good one. -- ,,,^..^,,, On Sat, May 7, 2011 at 8:12 PM, István

Re: how to change the default content-type

2011-05-07 Thread István
$ curl -D - -X GET -H "Content-Type: application/json" http://couch.nohup.hu/nohup_urls/c08b5c2c03d31ee767ab891223000d72 HTTP/1.1 200 OK Server: nginx/1.0.0 Date: Sat, 07 May 2011 16:11:57 GMT Content-Type: text/plain;charset=utf-8 Connection: keep-alive Vary: Accept-Encoding Etag: "1-e643d169eb859

Re: how to change the default content-type

2011-05-07 Thread Alexander Shorin
Is it for show documents? Just return {json: } in this case. -- ,,,^..^,,, On Sat, May 7, 2011 at 7:24 PM, István wrote: > Hi, > > is there an easy way to change the default content type > from  text/plain;charset=utf-8 to application/json somehow? > > Regards, > Istvan > > > -

how to change the default content-type

2011-05-07 Thread István
Hi, is there an easy way to change the default content type from text/plain;charset=utf-8 to application/json somehow? Regards, Istvan -- the sun shines for all