ORA-43859: CONTENTTYPE string too long ORACLE 报错 故障修复 远程处理
文档解释
ORA-43859: CONTENTTYPE string too long
Cause: Length of CONTENTTYPE string exceeded the defined maximum.
Action: Modify length of CONTENTTYPE string and retry operation.
ORA-43859: CONTENTTYPE string too long错误是由于Content-Type Header字符串太长而引起的,比如类似于Content-Type: application/json; charset=utf-8; boundary=”long boundary string”的请求。
官方解释
常见案例是在HTTP请求中有一个特别长的Content-Type字段时。
一般处理方法及步骤
1.检查HTTP请求或消息体中Content-Type Header元素的有效性;
2.移除无用的参数;
3.只保留有效,必需的参数;
4.检查Header元素中所有参数都被正确指定,重复的参数被移除;
5.在网站端进行调试;
6.重新尝试发起该HTTP请求。