Hi,
I am using nintex k2 cloud.
I have configured a smartobject that takes 3 inputs and added it as one of the available smartobjects on the Smartobject odata api page.
The smartobject uses a SQL server stored procedure to save data to a table. It has 3 parameters JSON nvarchar(max), filename nvarchar(200) and base64file nvarchar(max).
The nvarchar(max) fields are configured as Memo in the smart object. The base64file value is a file that has been base 64 encoded.
When testing the odata endpoint from postman it works perfectly when I use an encoded 400kb file, but I get an error when using an 840kb file :
{
"error": {
"code": "",
"message": "Error reading HTTP body."
}
}
The 840kb file is 1.1mb when it is base 64 encoded.
I suspect that there is a post size limit configured for the k2 odata implementation but I can find no documentation as to what that might be. From what I can find on the internet I can see that odata services typically have a limit of somewhere between 2 and 10Mb which is determined by the server implementation. What is the size limit for K2 odata?