I have a routing address setup to make a call to another system using REST in an IFS cloud managed environment. It works most of the time, but after multiple successful calls to the end point I start getting an error: Exception while sending data Caused by: javax.net.ssl.SSLException: Connection reset Caused by: java.net.SocketException: Connection reset.
Does IFS utilize a security appliance in the cloud hosted environments that sends a RST packet to the Connect server automatically after a certain volume of transactions are processed?
I have Connect configured to retry 60 times after 1 minute. This results in the message going from a waiting status to released after about a minute and then Connect picks it up and resends within a minute from there. As such a new RESTful connection for the same API call, but it continues to receive this error from anywhere from 10 minutes to multiple hours. If it is able to successfully make the connection which it does about 40% of the time, it succeeds, if it does not then the application message fails.
It is an automated routine that runs every night and will make one request at a time to the REST endpoint. When the callback occurs successfully then it makes the next request. The API call is requesting records from a third party service and will load anywhere from 500 to 6,000 records in IFS in batches of 100 each. After about 10 successful requests I start getting the connection reset error. Sometimes it clears on its own, and sometimes I have to restart the process in the morning. If it runs correctly the requests are going out about 1 every minute or so, if it fails then the retry takes about 2 minutes, so this isn’t creating a huge volume of transactions. Also, the error always occurs on the outbound RESTful call not the call back step.