Hello, I have an attachment that is a 4.2MB attachment. After encoded with other JSON data, it has a payload of about 5.6MB. The posted is in c:\windows\temp as a .tmp file in its entirety. The C# Web Server though replies with {"message":"Empty request","type":"HttpServer.HttpException"}.
Is there a payload limit that is being exceeded? If I try to post data something greater than 4MB, this error occurs, but smaller payloads post fine.
`POST /raw HTTP/1.1
Host: dev-server
Accept: */*
Cookie: DS_SESSION_NAME={2BC1A89C-D9C8-43B2-8D9C-7A6088F878D3}
Content-type: application/javascript
Accept-Encoding: gzip
Content-Length: 5840547
Expect: 100-continue
HTTP/1.1 100 Please continue mate.
{"Type": 602, "Data": {"__RuntimeType": "CRecordChangeRequest", "EventName": "InsertRecord", "ModificationTime": "2017-01-10T18:54:41Z", "Record": {"View": "Maximo/Documents/Document Links", "Identity": 1839350890}
Hello, I have an attachment that is a 4.2MB attachment. After encoded with other JSON data, it has a payload of about 5.6MB. The posted is in c:\windows\temp as a .tmp file in its entirety. The C# Web Server though replies with
{"message":"Empty request","type":"HttpServer.HttpException"}.Is there a payload limit that is being exceeded? If I try to post data something greater than 4MB, this error occurs, but smaller payloads post fine.