|
Home > Archive > BizTalk Server General > September 2004 > Biztalk only Posts two transactions at a time
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 only Posts two transactions at a time
|
|
| Samar Roy 2004-08-30, 5:55 pm |
| I have a SOAP application that receives requests through a file adapter.
While testing, I send 10 requests at the same time. When I look at the SOAP
server for requests, I see only two come in. When they complete. I can see
another two come in. On the receive side, biztalk had picked up all the files
at the same time. If is a loading issue in Biztalk, or can I configure it
somewhere to post more files to the SOAP service at the same time.
| |
| Arthur Nesterovsky 2004-09-02, 6:19 pm |
| Hi,
> I have a SOAP application that receives requests through a file adapter.
> While testing, I send 10 requests at the same time. When I look at the
SOAP
> server for requests, I see only two come in. When they complete. I can see
> another two come in. On the receive side, biztalk had picked up all the
files
> at the same time. If is a loading issue in Biztalk, or can I configure it
> somewhere to post more files to the SOAP service at the same time.
Did your orchestration requests something through HTTP?
It seems you've run into the old problem. The HTTP client cannot
have more than two opened connection at the same time.
This is default behavior.
______________________________
With best wishes, Arthur Nesterovsky
Please visit my home page:
http://www.nesterovsky-bros.com
| |
| Arthur Nesterovsky 2004-09-02, 6:19 pm |
| > It seems you've run into the old problem. The HTTP client cannot
> have more than two opened connection at the same time.
To be more exact, the HTTP client cannot open at the same time more than
two connections to the same endpoint. But you can open e.g. 4 connection to
to two different endpoints, or, just for fun, create two clients that have 4
connections
to the same endpoint. And so on... ;-)
______________________________
With best wishes, Arthur Nesterovsky
Please visit my home page:
http://www.nesterovsky-bros.com
| |
| Matt Milner 2004-09-02, 6:20 pm |
| you can change this behavior by modifying the machine.config file. Look at
the connection management section in the <system.net> configuration section.
You can add an "add" node with the address of hte server you are calling and
set the connection limit higher than two.
Matt
"Arthur Nesterovsky" <arthur_NO_SPAM_PLEASE_@nesterovsky-bros.com> wrote in
message news:e7wBFJ1jEHA.3876@TK2MSFTNGP15.phx.gbl...
> Hi,
>
> SOAP
see[vbcol=seagreen]
> files
it[vbcol=seagreen]
>
> Did your orchestration requests something through HTTP?
>
> It seems you've run into the old problem. The HTTP client cannot
> have more than two opened connection at the same time.
> This is default behavior.
> ______________________________
> With best wishes, Arthur Nesterovsky
> Please visit my home page:
> http://www.nesterovsky-bros.com
>
>
>
|
|
|
|
|