Index: setup.py
===================================================================
--- setup.py	(revision 5910)
+++ setup.py	(working copy)
@@ -46,6 +46,7 @@
       text/x-json to python = wsgiremote.json:json [json]
       text/json to python = wsgiremote.json:json [json]
       json to python = wsgiremote.json:json [json]
+      application/json to python = wsgiremote.json:json [json]
 
       application/x-www-form-urlencoded to cgi.FieldStorage = wsgiremote.form:form
       multipart/form-data to cgi.FieldStorage = wsgiremote.form:formfile
Index: wsgiremote/json.py
===================================================================
--- wsgiremote/json.py	(revision 5910)
+++ wsgiremote/json.py	(working copy)
@@ -2,6 +2,6 @@
 from wsgiremote.format import Format
 
 json = Format(
-    'json', ['text/x-json'], 'python',
+    'json', ['text/x-json', 'application/json'], 'python',
     serialize=dumps,
     decode=loads)
