|
Home > Archive > BizTalk Server > August 2005 > BizTalk SetTimeout
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
BizTalk SetTimeout
|
|
| Francesco 2005-07-29, 7:58 am |
| Hello,
In my orchestration I have a send/receive port towards a web service.
After I send an xml request, sometimes I have this message (in the
windows event) when receive response :
" The adapter failed to transmit message going to send
port "http://localhost/wsSabre/wsSabÂ_re.asmx". It will be retransmitted
after the retry interval specified for this Send Port. Details:"Timeout
operation."
I have read that I must set the Retry Interval. I have found this
parameter in BizTalk Explorer, but when I change value, and recompile
the project, this value is always set to the value "5" (minutes).
I can't change it!
How can I do?
thanks for all response!
Francesco
| |
| Paul Somers\(MVP\) 2005-08-01, 8:09 am |
| Hi,
It is not in your assemly where you set the retry interval. You set it on
the port, when you deploy your ports you need to set this value. Other wise,
by default it will be 5 minutes. You can set this in production many ways,
we use a script or you can use this:
http://www.gotdotnet.com/Workspaces...87-da7ae2c9016a
One other thing to avoid time out errors, you can also set a property of
the message before you send it in your orchestration,
Message(HTTP.RequestTimeout) = {number}
This will make the request wait longer than 100 seconds (The default)
Paul.
"Francesco" <Francesco@discussions.microsoft.com> wrote in message
news:9298C8CB-F198-412C-BECC-08A1E79EBE62@microsoft.com...
> Hello,
> In my orchestration I have a send/receive port towards a web service.
> After I send an xml request, sometimes I have this message (in the
> windows event) when receive response :
> " The adapter failed to transmit message going to send
> port "http://localhost/wsSabre/wsSab_re.asmx". It will be retransmitted
> after the retry interval specified for this Send Port. Details:"Timeout
> operation."
>
> I have read that I must set the Retry Interval. I have found this
> parameter in BizTalk Explorer, but when I change value, and recompile
> the project, this value is always set to the value "5" (minutes).
> I can't change it!
>
> How can I do?
> thanks for all response!
>
> Francesco
>
|
|
|
|
|