Two connections at the same time

I am busy with a PHP application which sells products.

Per product i need to check the stock at two different locations (on the
web) through
SOAP requests.

Now the first request takes 2 seconds and the other 3 seconds so 5 seconds.

It would be nice to fire the two requests at the same time so the total
would be 3 seconds instead of 5 seconds.

I do not think this is possible with PHP or am i wrong?

Thanks in advance!

Marcel
Marcel Molenaar [ Mo, 21 Januar 2008 10:52 ] [ ID #1913259 ]

Re: Two connections at the same time

Marcel Molenaar wrote:
> It would be nice to fire the two requests at the same time so the
> total would be 3 seconds instead of 5 seconds.
>
> I do not think this is possible with PHP or am i wrong?
>

If you are using fsockopen to build your connection, you can use
stream_set_blocking to select non-blocking mode, which enables you to do
multiple requests as the following example shows:

http://playground.jwscripts.com/async-streams.phps

Using the SOAP extension, you might be able to use forking:

http://www.php.net/manual/nl/function.pcntl-fork.php

See this page for OS-specific restrictions.


HTH;
JW
Janwillem Borleffs [ Mo, 21 Januar 2008 16:45 ] [ ID #1913266 ]

Re: Two connections at the same time

"Janwillem Borleffs" <jw [at] jwscripts.com> wrote in message
news:4794be2d$0$64162$dbd4f001 [at] news.wanadoo.nl...
> Marcel Molenaar wrote:
>> It would be nice to fire the two requests at the same time so the
>> total would be 3 seconds instead of 5 seconds.
>>
>> I do not think this is possible with PHP or am i wrong?
>>
>
> If you are using fsockopen to build your connection, you can use
> stream_set_blocking to select non-blocking mode, which enables you to do
> multiple requests as the following example shows:
>
> http://playground.jwscripts.com/async-streams.phps
>
> Using the SOAP extension, you might be able to use forking:
>
> http://www.php.net/manual/nl/function.pcntl-fork.php
>
> See this page for OS-specific restrictions.
>
>
`
Interesting!

Thanks for your help!

Marcel;
Marcel Molenaar [ Di, 22 Januar 2008 13:26 ] [ ID #1913953 ]
PHP » alt.php » Two connections at the same time

Vorheriges Thema: PHP Books - jumbooks.com
Nächstes Thema: phpinfo issue !!