2

I would like to increase the timeout for a dynamic solicit-response send port I have created on BizTalk 2013.

Currently the timeout is set to 1 minute, which is default by BizTalk, but every time a large message comes through, BizTalk is generating a timeout error, because the message is taking more than 1 minute to process.

One way to solve it was to make the orchestration atomic, therefore having control of the timeout period as to when an instance can be terminated, but this does not come in handy, since my Orchestration is not transactional.

This leaves me with the possibility of setting the timeout period through the BizTalk Configuration manager. However, since I need to use a dynamic solicit-response send port, I cannot find a way to set the timeout.

How can you set the timeout on a dynamic solicit-response send port?

4

1 に答える 1

2

WCF.BindingConfiguration港のプロパティを見てください。たとえば、オープン タイムアウトを設定する場合は、次のようにします。

Port_Name(WCF.BindingConfiguration)=@”<binding name=””WCF-Custom”” openTimeout=””00:10:00″” />”;
于 2015-05-04T15:52:11.713 に答える