vote up 31 vote down star
9

Right I've been messing around with json for some time, just pushing it out as text and it hasn't hurt anybody (I know of) but I'd like to start doing things properly.

I have seen so many purported "standards" for the json content type:

application/json
application/x-javascript
text/javascript
text/x-javascript
text/x-json

But which is right? Or best? I gather that there are security and browser support issues varying between them...

(I know there's a similar question but I'd like a slightly more targeted answer.)

flag

4 Answers

vote up 49 vote down check

RFC 4627:

The MIME media type for JSON text is application/json.

link|flag
Do we know how widely supported application/json is? – Anirvan Feb 5 at 2:26
1  
“application/json” is the only correct media type. What exactly do you want to know about it’s support? – Gumbo Feb 5 at 11:12
4  
Browsers do have a bit of a history of not correctly supporting things like "standards"... ;-) – Richard E May 20 at 13:55
vote up 1 vote down

If you're calling ASP.NET Web Services from the client-side you have to use 'application/json' for it to work. I believe this is the same for jQuery and ExtJS frameworks.

link|flag
vote up 0 vote down

Of course, correct MIME media type for JSON is application/json, but it's necessary to realize what type of data is expected in your application.

For example I use gwt-ext and server response must goes as text/html but contains JSON data

client side, gwt-ext form listener

uploadForm.getForm().addListener(new FormListenerAdapter(){
    @Override
    public void onActionFailed(Form form, int httpStatus,
    				String responseText) {				

    MessageBox.alert("Error");
    }

    @Override
    public void onActionComplete(Form form, int httpStatus,
    				String responseText) {

    MessageBox.alert("Success");
    }
});

In case of using application/json response type, browser suggests me to save file.

Server side sourse code snippet using Spring MVC

return new AbstractUrlBasedView() {
    @SuppressWarnings("unchecked")
    @Override
    protected void renderMergedOutputModel(Map model, HttpServletRequest request, HttpServletResponse response) throws Exception {

        response.setContentType("text/html");
        response.getWriter().write(json);
    }   		
};
link|flag
vote up 0 vote down

I have two server, one response rigth, and the other when response suggests me to save on file with the response text. I think this can change on server configs, in my case, apache config. If i found something i response again

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.