Currently application/x-www-form-urlencoded is used everywhere. While acceptable, there may be a problem in requests, which are potentially large (such as saving/upadting configurations). There multipart/form-data has to be used. A simple solution is to use multipart/form-data everywhere disregarding a slight performance hit. This is probably important only for POST requests.
Currently
application/x-www-form-urlencodedis used everywhere. While acceptable, there may be a problem in requests, which are potentially large (such as saving/upadting configurations). Theremultipart/form-datahas to be used. A simple solution is to usemultipart/form-dataeverywhere disregarding a slight performance hit. This is probably important only forPOSTrequests.