Default response timeout for outbound async HTTP call with glide.http.outbound.max_timeout.enabled set to falseIssue Requirement Set higher response timeout values for outbound async REST/SOAP messages using waitForResponse() method while keeping the default timeout value less than the system default of 5 minutes.CauseAs per KB0744311, If glide.http.outbound.max_timeout.enabled is set to true and a value is passed in the waitForResponse() method, the system uses the smallest value from either the waitForResponse() method or the glide.http.outbound.max_timeout system property. To define a timeout longer than 30 seconds, set the glide.http.outbound.max_timeout.enabled system property to false and use the waitForResponse() method to set the timeout. If glide.http.outbound.max_timeout.enabled system property is set to false, and waitForResponse() method is not used in the REST/SOAP message, the system will use the default response timeout of 5 minutes. This might not be acceptable in some use cases.ResolutionSet property glide.http.outbound.max_timeout.enabled to falseRESTResponseV2 Set property glide.rest.outbound.ecc_response.timeout to required system default response timeout (in seconds) SOAPResponseV2 Set property glide.soap.outbound.ecc_response.timeout to required system default response timeout (in seconds) Use waitForResponse() method for custom response timeout (in seconds)Related LinksReferences: Error on REST/SOAP Outbound Message through MID Server - No response after waiting 30 seconds in ECC QueueAfter an upgrade, outbound REST or SOAP messages may start to time outRESTResponseV2 - waitForResponse(Number timeoutSecs)SOAPResponseV2 - waitForResponse(Number timeoutSecs)