Forum Replies Created
-
anoop.S_20156Participant5 years, 1 month ago in reply to: Unable To download the CSV file for the object which is having more then 300 fields. #5728
Hi Aravelo,
The maximum size of the request and response HTTP header(csv header)specified in bytes. If not specified, this attribute is set to 4096 (4 KB).
As the object which you are trying to sync is having more then 300 fields.So header is more then 4KB that is the reason its throwing an error. To troubleshoot this error you need to increase the maxHttpHeaderSize.Please change properties present in server.xml
change the HTTP/1.1 Connector entry and set the maxHttpHeaderSize to “65536” (64Kb in bytes) as shown below:Please refer the below link:
https://thewebspark.com/2017/12/06/tomcat-request-header-too-large-resolved/
anoop.S_20156Participant5 years, 1 month ago in reply to: Unable To download the CSV file for the object which is having more then 300 fields. #5727Hi Aravelo,
The maximum size of the request and response HTTP header(csv header)specified in bytes. If not specified, this attribute is set to 4096 (4 KB).
As the object which you are trying to sync is having more then 300 fields.So header is more then 4KB that is the reason its throwing an error. To troubleshoot this error you need to increase the maxHttpHeaderSize.Please change properties present in server.xml
change the HTTP/1.1 Connector entry and set the maxHttpHeaderSize to “65536” (64Kb in bytes) as shown below:Please refer the below link:
https://thewebspark.com/2017/12/06/tomcat-request-header-too-large-resolved/
anoop.S_20156Participant5 years, 5 months ago in reply to: ORA-01438: value larger than specified precision allowed for this column :Value too long for column EPR_ID_NUM__C NUMBER (18,10) #5709Please Increase the column size of EPR_ID_NUM__C NUMBER (18,10) to EPR_ID_NUM__C NUMBER (20,10) in DataBase table.