
Announcements
We have a simple flow as shown below, it imports user submitted information from FormStack into our SQL server. The user is able to append documents to their form, and the FormStack API writes the binary encoding of the appended document into a varbinary column in our table.
We run into an issue where larger documents, that are 2 Mb and more, cause the gateway to fail with the following error message
"status": 404,
"message": "The gateway is either offline or could not be reached.
inner exception: Gateway on endpoint is unreachable.\r\n
inner exception: The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '00:01:00'.
Obviously when the document in question is removed from the flow, everything works like a charm.
I've tried setting a timeout on the Insert row operation to 30min, but with no luck. Is it possible to configure something from the gateway's side?