Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Configuring the timeout for a Send Port › Configuring the timeout for a Send Port
May 15, 2006 at 10:03 AM
#14641
You can use SOAP.ClientConnectionTimeout
Put the following in a message assignment:
[code:1:04ffa04300]The_Message_Youre_Sending(SOAP.ClientConnectionTimeout) = 1800000;[/code:1:04ffa04300]
And you will have a 30minute (1800000 milliseconds) timeout instead. But for operations that can take several hours you’re probably better off using greg’s methods.