|
Home > Archive > Apache Server configuration support > February 2006 > apache - php - multi requests
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 |
apache - php - multi requests
|
|
|
| Hi,
I have problems with Apache and PHP.
Our configuration:
Apache/2.0.52 (Debian GNU/Linux) PHP/5.0.5-3
here we have some pages which are thin clients for our web services.
--------------
try {
$client = new SoapClient($wsdl, array('login' => $wsdl_user, 'password'
=> $wsdl_pass));
} catch (SoapFault $fault) {
...............
...............
$meth_res = $client->$meth($p1,$p2);
echo .................
--------------
and we have our probing server which calls these pages. The problem is
that if one of our web services is working slow, and has long response
times, all other probes has long response time because it looks like
all request are held in apache and not processed until the slow one is
done its jobs.
It looks like some problems with multi-threding/procesing?
Maybe anyone has similar problems.
Schema:
[Probing server] >> [apache/php5/php pages] >> [probed servers]
Thanks for help.
Marius
| |
|
| It looks like I have the same situation on mine test environment
(Windows OS with apache2 and PHP5). It looks like everything ok then i
test from browser, but doesn't work from our probing server.
Marius
|
|
|
|
|