Hi there,
Is there a way to change the timeout of the integration framework? In ErpServiceCaller I see this:
WSHttpBinding binding = new WSHttpBinding {
SendTimeout = TimeSpan.FromMinutes(30.0),
OpenTimeout = TimeSpan.FromMinutes(30.0),
CloseTimeout = TimeSpan.FromMinutes(30.0),
ReceiveTimeout = TimeSpan.FromMinutes(30.0),
MaxBufferPoolSize = 0x80000L,
MaxReceivedMessageSize = 0x7fffffffL,
AllowCookies = false,
BypassProxyOnLocal = false,
HostNameComparisonMode = HostNameComparisonMode.StrongWildcard,
MessageEncoding = WSMessageEncoding.Text,
TextEncoding = Encoding.UTF8,
UseDefaultWebProxy = true,
Name = "DynamicwebErpService.DynamicwebService"
};
Any way to override those defaults?
Imar