The converters in web.config are only used when processing an asmx web service. They are not meant to be used during arbitrary JSON serialization. If you want you can write a custom ActionResult that reads the list from web.config and write passes it into the serializer. If you look at the source code for the built-in JsonResult you'll see it's only a few lines of code so adding the functionality to your app shouldn't be too hard.