php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #38375 SOAP-ERROR HTTPS
Submitted: 2006-08-08 08:39 UTC Modified: 2006-08-22 06:30 UTC
From: tja at mgn dot net Assigned: dmitry (profile)
Status: Not a bug Package: SOAP related
PHP Version: 5.1.4 OS: Linux 2.4.27
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: tja at mgn dot net
New email:
PHP Version: OS:

 

 [2006-08-08 08:39 UTC] tja at mgn dot net
Description:
------------
I try to work soap connection in https, it works fine in http but not in https

$soapClient = new SoapClient('http://domain.name/' . 'WebService/test.asmx?wsdl', array('login'=>'login', 'password'=>'pwd'));

in https : 

$soapClient = new SoapClient('https://domain.name/' . 'WebService/test.asmx?wsdl', array('login'=>'login', 'password'=>'pwd'));

i have this error : 
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://domain.name/WebService/test.asmx?wsdl'in /appli/mmx/s1/web/agod/vegas/sim_ann_cli.php:10 Stack trace: #0 /appli/mmx/s1/web/agod/vegas/test.php(10): SoapClient->__construct('https://domain...', Array) #1 {main} thrown in /appli/mmx/s1/web/agod/vegas/test.php on line 10

Reproduce code:
---------------
$soapClient = new SoapClient('https://domain.name/' . 'WebService/test.asmx?wsdl', array('login'=>'login', 'password'=>'pwd'));

Actual result:
--------------
Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://domain.name/WebService/test.asmx?wsdl'in /appli/mmx/s1/web/agod/vegas/sim_ann_cli.php:10 Stack trace: #0 /appli/mmx/s1/web/agod/vegas/test.php(10): SoapClient->__construct('https://domain...', Array) #1 {main} thrown in /appli/mmx/s1/web/agod/vegas/test.php on line 10

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-08-08 08:59 UTC] tony2001@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip

If you're still able to reproduce it - please provide short and complete reproduce case.
 [2006-08-08 09:42 UTC] tja at mgn dot net
I still have the same error.
I compile PHP with this options :
./configure' '--prefix=/opt/php-5.2' '--enable-track-vars' '--with-zlib-dir' '--enable-xml' '--enable-ftp' '--with-apxs=/opt/apache/bin/apxs' '--enable-xslt' '--enable-soap' '--with-pgsql' '--with-curl=/opt/curl-7.15.4' '--with-curlwrappers' '--with-openssl-dir=/opt/openssl-0.9.7d'
 [2006-08-08 09:46 UTC] tony2001@php.net
Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc. If the script requires a 
database to demonstrate the issue, please make sure it creates 
all necessary tables, stored procedures etc.

Please avoid embedding huge scripts into the report.


 [2006-08-08 09:51 UTC] tja at mgn dot net
I reproduce the error message whith :
<?php
$soapClient = new SoapClient('https://domain.name/' .
'WebService/test.asmx?wsdl', array('login'=>'login',
'password'=>'pwd'));
?>
 [2006-08-08 09:55 UTC] tony2001@php.net
Is it possible to get something real instead of domain.name, so we can copy/paste the script and test it?
Thank you.
 [2006-08-08 09:59 UTC] tja at mgn dot net
Sorry i can't give you the real domain name, because this one is not reachable from internet.
 [2006-08-08 16:13 UTC] tja at mgn dot net
you can below  the result of the "strace" command :

execve("/opt/php-5.2/bin/php", ["/opt/php-5.2/bin/php", "tja.php"], [/* 18 vars */]) = 0
uname({sys="Linux", node="Pros7s", ...}) = 0
brk(0)                                  = 0x83aafcc
open("/etc/ld.so.preload", O_RDONLY)    = -1 ENOENT (No such file or directory)
open("/opt/curl-7.15.4/lib/i686/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/curl-7.15.4/lib/i686/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/curl-7.15.4/lib/i686/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/curl-7.15.4/lib/i686", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/curl-7.15.4/lib/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/curl-7.15.4/lib/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/curl-7.15.4/lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/curl-7.15.4/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/local/lib/i686/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/i686/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/i686/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/i686", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/lib", {st_mode=S_IFDIR|S_ISGID|0775, st_size=4096, ...}) = 0
open("/opt/openssl-0.9.7d/lib/i686/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/openssl-0.9.7d/lib/i686/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/i686/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/openssl-0.9.7d/lib/i686", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/openssl-0.9.7d/lib/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/opt/openssl-0.9.7d/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
open("/usr/local/pgsql/lib/i686/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/pgsql/lib/i686/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/i686/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/pgsql/lib/i686", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/mmx/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/pgsql/lib/mmx", 0xbffff144) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libcrypt.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("/usr/local/pgsql/lib", {st_mode=S_IFDIR|S_ISGID|0755, st_size=4096, ...}) = 0
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=13041, ...}) = 0
old_mmap(NULL, 13041, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000
close(3)                                = 0
open("/lib/libcrypt.so.1", O_RDONLY)    = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320\t\0"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=19136, ...}) = 0
old_mmap(NULL, 182044, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40018000
mprotect(0x4001d000, 161564, PROT_NONE) = 0
old_mmap(0x4001d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x4000) = 0x4001d000
old_mmap(0x4001e000, 157468, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4001e000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libpq.so.3", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libpq.so.3", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libpq.so.3", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libpq.so.3", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0PH\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0755, st_size=105629, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40045000
old_mmap(NULL, 93348, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40046000
mprotect(0x4005c000, 3236, PROT_NONE)   = 0
old_mmap(0x4005c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x15000) = 0x4005c000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libssl.so.0.9.7", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libssl.so.0.9.7", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libssl.so.0.9.7", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\204"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0555, st_size=219064, ...}) = 0
old_mmap(NULL, 191424, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4005d000
mprotect(0x40089000, 11200, PROT_NONE)  = 0
old_mmap(0x40089000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x2c000) = 0x40089000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libcrypto.so.0.9.7", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libcrypto.so.0.9.7", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libcrypto.so.0.9.7", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\360\276"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0555, st_size=1182280, ...}) = 0
old_mmap(NULL, 1008516, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4008c000
mprotect(0x4016e000, 82820, PROT_NONE)  = 0
old_mmap(0x4016e000, 69632, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xe1000) = 0x4016e000
old_mmap(0x4017f000, 13188, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4017f000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libresolv.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libresolv.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libresolv.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libresolv.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libresolv.so.2", O_RDONLY)   = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\'\0"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=56480, ...}) = 0
old_mmap(NULL, 65312, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40183000
mprotect(0x40190000, 12064, PROT_NONE)  = 0
old_mmap(0x40190000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xd000) = 0x40190000
old_mmap(0x40191000, 7968, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40191000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libm.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libm.so.6", O_RDONLY)        = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2007\0"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=130088, ...}) = 0
old_mmap(NULL, 132708, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40193000
mprotect(0x401b3000, 1636, PROT_NONE)   = 0
old_mmap(0x401b3000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1f000) = 0x401b3000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libdl.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libdl.so.2", O_RDONLY)       = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0T\27\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=8008, ...}) = 0
old_mmap(NULL, 11004, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x401b4000
mprotect(0x401b6000, 2812, PROT_NONE)   = 0
old_mmap(0x401b6000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x1000) = 0x401b6000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libnsl.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libnsl.so.1", O_RDONLY)      = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 ;\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=69472, ...}) = 0
old_mmap(NULL, 80988, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x401b7000
mprotect(0x401c8000, 11356, PROT_NONE)  = 0
old_mmap(0x401c8000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x10000) = 0x401c8000
old_mmap(0x401c9000, 7260, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x401c9000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libcurl.so.3", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`w\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0755, st_size=787976, ...}) = 0
old_mmap(NULL, 212476, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x401cb000
mprotect(0x401fe000, 3580, PROT_NONE)   = 0
old_mmap(0x401fe000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x33000) = 0x401fe000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libxml2.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libxml2.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\375"..., 1024) = 1024
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x401ff000
fstat64(3, {st_mode=S_IFREG|0755, st_size=2754944, ...}) = 0
old_mmap(NULL, 1112020, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40200000
mprotect(0x40306000, 38868, PROT_NONE)  = 0
old_mmap(0x40306000, 36864, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x105000) = 0x40306000
old_mmap(0x4030f000, 2004, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4030f000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libpthread.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libpthread.so.0", O_RDONLY)  = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`C\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=102172, ...}) = 0
old_mmap(NULL, 81316, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40310000
mprotect(0x4031d000, 28068, PROT_NONE)  = 0
old_mmap(0x4031d000, 28672, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xd000) = 0x4031d000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libc.so.6", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libc.so.6", O_RDONLY)        = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\30\222"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0755, st_size=1153784, ...}) = 0
old_mmap(NULL, 1166560, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40324000
mprotect(0x40437000, 40160, PROT_NONE)  = 0
old_mmap(0x40437000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x113000) = 0x40437000
old_mmap(0x4043d000, 15584, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4043d000
close(3)                                = 0
open("/opt/curl-7.15.4/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/curl-7.15.4/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libz.so.1", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/libz.so.1", O_RDONLY)    = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\200\30"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=55432, ...}) = 0
old_mmap(NULL, 54460, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40441000
mprotect(0x4044d000, 5308, PROT_NONE)   = 0
old_mmap(0x4044d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0xc000) = 0x4044d000
close(3)                                = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x4044f000
munmap(0x40014000, 13041)               = 0
getrlimit(0x3, 0xbffffbbc)              = 0
setrlimit(RLIMIT_STACK, {rlim_cur=2044*1024, rlim_max=RLIM_INFINITY}) = 0
getpid()                                = 27376
uname({sys="Linux", node="Pros7s", ...}) = 0
rt_sigaction(SIGRTMIN, {0x40318480, [], 0x4000000}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x40318508, [], 0x4000000}, NULL, 8) = 0
rt_sigaction(SIGRT_2, {0x40318608, [], 0x4000000}, NULL, 8) = 0
rt_sigprocmask(SIG_BLOCK, [RTMIN], NULL, 8) = 0
_sysctl({{CTL_KERN, KERN_VERSION}, 2, 0xbffff9c4, 33, (nil), 0}) = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_DFL}, 8) = 0
brk(0)                                  = 0x83aafcc
brk(0x83aaffc)                          = 0x83aaffc
brk(0x83ac000)                          = 0x83ac000
getcwd("/appli/mmx/s1/web/agod", 4096)  = 23
brk(0x83ad000)                          = 0x83ad000
old_mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40450000
brk(0x83ae000)                          = 0x83ae000
brk(0x83af000)                          = 0x83af000
open("/etc/localtime", O_RDONLY)        = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=1082, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "TZif\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\f\0\0\0\f\0"..., 4096) = 1082
brk(0x83b0000)                          = 0x83b0000
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
lstat64("/opt", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2/bin", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2/bin/php", {st_mode=S_IFREG|0755, st_size=9378350, ...}) = 0
open("./php-cli.ini", O_RDONLY)         = -1 ENOENT (No such file or directory)
open("/opt/php-5.2/bin/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/php-5.2/lib/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
open("./php.ini", O_RDONLY)             = -1 ENOENT (No such file or directory)
open("/opt/php-5.2/bin/php.ini", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/php-5.2/lib/php.ini", O_RDONLY) = 3
lstat64("/opt", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat64("/opt/php-5.2/lib/php.ini", {st_mode=S_IFREG|0644, st_size=42097, ...}) = 0
ioctl(3, SNDCTL_TMR_TIMEBASE, 0xbfffe8e8) = -1 ENOTTY (Inappropriate ioctl for device)
brk(0x83b5000)                          = 0x83b5000
fstat64(3, {st_mode=S_IFREG|0644, st_size=42097, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "[PHP]\n\n;;;;;;;;;;;\n; WARNING ;\n;"..., 8192) = 8192
read(3, " whose names begin with the\n; pr"..., 8192) = 8192
read(3, "scripts\' global scope\n; with use"..., 8192) = 8192
read(3, "    =  Not yet implemented\n\n; Al"..., 8192) = 8192
brk(0x83b6000)                          = 0x83b6000
brk(0x83b7000)                          = 0x83b7000
read(3, "ssion on request startup.\nsessio"..., 8192) = 8192
read(3, "ith mbstring support this will a"..., 8192) = 1137
read(3, "", 4096)                       = 0
brk(0x83b8000)                          = 0x83b8000
read(3, "", 8192)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
brk(0x83b9000)                          = 0x83b9000
brk(0x83ba000)                          = 0x83ba000
brk(0x83bb000)                          = 0x83bb000
brk(0x83bc000)                          = 0x83bc000
brk(0x83bd000)                          = 0x83bd000
brk(0x83be000)                          = 0x83be000
brk(0x83bf000)                          = 0x83bf000
brk(0x83c0000)                          = 0x83c0000
brk(0x83c1000)                          = 0x83c1000
brk(0x83c2000)                          = 0x83c2000
brk(0x83c3000)                          = 0x83c3000
brk(0x83c4000)                          = 0x83c4000
brk(0x83c5000)                          = 0x83c5000
brk(0x83c6000)                          = 0x83c6000
brk(0x83c7000)                          = 0x83c7000
brk(0x83c8000)                          = 0x83c8000
brk(0x83c9000)                          = 0x83c9000
brk(0x83ca000)                          = 0x83ca000
brk(0x83cb000)                          = 0x83cb000
brk(0x83cc000)                          = 0x83cc000
brk(0x83cd000)                          = 0x83cd000
brk(0x83ce000)                          = 0x83ce000
brk(0x83cf000)                          = 0x83cf000
brk(0x83d0000)                          = 0x83d0000
brk(0x83d1000)                          = 0x83d1000
brk(0x83d2000)                          = 0x83d2000
brk(0x83d4000)                          = 0x83d4000
brk(0x83d5000)                          = 0x83d5000
brk(0x83d6000)                          = 0x83d6000
brk(0x83d7000)                          = 0x83d7000
brk(0x83d8000)                          = 0x83d8000
brk(0x83d9000)                          = 0x83d9000
brk(0x83da000)                          = 0x83da000
brk(0x83db000)                          = 0x83db000
brk(0x83dc000)                          = 0x83dc000
brk(0x83dd000)                          = 0x83dd000
brk(0x83de000)                          = 0x83de000
brk(0x83df000)                          = 0x83df000
brk(0x83e0000)                          = 0x83e0000
brk(0x83e1000)                          = 0x83e1000
brk(0x83e2000)                          = 0x83e2000
brk(0x83e3000)                          = 0x83e3000
brk(0x83e4000)                          = 0x83e4000
brk(0x83e5000)                          = 0x83e5000
brk(0x83e6000)                          = 0x83e6000
brk(0x83e7000)                          = 0x83e7000
brk(0x83e8000)                          = 0x83e8000
brk(0x83e9000)                          = 0x83e9000
brk(0x83ea000)                          = 0x83ea000
brk(0x83eb000)                          = 0x83eb000
brk(0x83ec000)                          = 0x83ec000
brk(0x83ed000)                          = 0x83ed000
brk(0x83ee000)                          = 0x83ee000
brk(0x83ef000)                          = 0x83ef000
brk(0x83f0000)                          = 0x83f0000
brk(0x83f1000)                          = 0x83f1000
brk(0x83f2000)                          = 0x83f2000
brk(0x83f3000)                          = 0x83f3000
brk(0x83f4000)                          = 0x83f4000
brk(0x83f5000)                          = 0x83f5000
brk(0x83f6000)                          = 0x83f6000
brk(0x83f7000)                          = 0x83f7000
brk(0x83f8000)                          = 0x83f8000
brk(0x83f9000)                          = 0x83f9000
brk(0x83fa000)                          = 0x83fa000
brk(0x83fb000)                          = 0x83fb000
brk(0x83fc000)                          = 0x83fc000
brk(0x83fd000)                          = 0x83fd000
brk(0x83fe000)                          = 0x83fe000
brk(0x83ff000)                          = 0x83ff000
brk(0x8400000)                          = 0x8400000
brk(0x8401000)                          = 0x8401000
brk(0x8402000)                          = 0x8402000
brk(0x8403000)                          = 0x8403000
brk(0x8404000)                          = 0x8404000
brk(0x8405000)                          = 0x8405000
brk(0x8406000)                          = 0x8406000
brk(0x8407000)                          = 0x8407000
brk(0x8408000)                          = 0x8408000
brk(0x8409000)                          = 0x8409000
brk(0x840a000)                          = 0x840a000
brk(0x840b000)                          = 0x840b000
brk(0x840c000)                          = 0x840c000
brk(0x840d000)                          = 0x840d000
brk(0x840e000)                          = 0x840e000
brk(0x840f000)                          = 0x840f000
brk(0x8410000)                          = 0x8410000
brk(0x8411000)                          = 0x8411000
brk(0x8412000)                          = 0x8412000
brk(0x8413000)                          = 0x8413000
brk(0x8414000)                          = 0x8414000
brk(0x8415000)                          = 0x8415000
brk(0x8416000)                          = 0x8416000
brk(0x8417000)                          = 0x8417000
brk(0x8418000)                          = 0x8418000
brk(0x8419000)                          = 0x8419000
brk(0x841a000)                          = 0x841a000
brk(0x841b000)                          = 0x841b000
brk(0x841c000)                          = 0x841c000
brk(0x841d000)                          = 0x841d000
brk(0x841f000)                          = 0x841f000
brk(0x8420000)                          = 0x8420000
brk(0x8421000)                          = 0x8421000
brk(0x8422000)                          = 0x8422000
brk(0x8423000)                          = 0x8423000
brk(0x8424000)                          = 0x8424000
brk(0x8425000)                          = 0x8425000
brk(0x8426000)                          = 0x8426000
brk(0x8427000)                          = 0x8427000
brk(0x8428000)                          = 0x8428000
brk(0x8429000)                          = 0x8429000
brk(0x842a000)                          = 0x842a000
brk(0x842b000)                          = 0x842b000
brk(0x842c000)                          = 0x842c000
brk(0x842d000)                          = 0x842d000
brk(0x842e000)                          = 0x842e000
brk(0x842f000)                          = 0x842f000
brk(0x8430000)                          = 0x8430000
brk(0x8431000)                          = 0x8431000
brk(0x8432000)                          = 0x8432000
brk(0x8433000)                          = 0x8433000
brk(0x8434000)                          = 0x8434000
brk(0x8435000)                          = 0x8435000
brk(0x8436000)                          = 0x8436000
brk(0x8437000)                          = 0x8437000
brk(0x8438000)                          = 0x8438000
brk(0x8439000)                          = 0x8439000
brk(0x843a000)                          = 0x843a000
brk(0x843b000)                          = 0x843b000
brk(0x843c000)                          = 0x843c000
brk(0x843d000)                          = 0x843d000
brk(0x843e000)                          = 0x843e000
brk(0x843f000)                          = 0x843f000
brk(0x8440000)                          = 0x8440000
brk(0x8441000)                          = 0x8441000
brk(0x8442000)                          = 0x8442000
brk(0x8443000)                          = 0x8443000
brk(0x8444000)                          = 0x8444000
brk(0x8445000)                          = 0x8445000
brk(0x8446000)                          = 0x8446000
brk(0x8447000)                          = 0x8447000
brk(0x8448000)                          = 0x8448000
brk(0x8449000)                          = 0x8449000
brk(0x844a000)                          = 0x844a000
brk(0x844b000)                          = 0x844b000
brk(0x844c000)                          = 0x844c000
brk(0x844d000)                          = 0x844d000
brk(0x844e000)                          = 0x844e000
brk(0x844f000)                          = 0x844f000
brk(0x8450000)                          = 0x8450000
brk(0x8451000)                          = 0x8451000
brk(0x8452000)                          = 0x8452000
brk(0x8453000)                          = 0x8453000
brk(0x8454000)                          = 0x8454000
brk(0x8455000)                          = 0x8455000
brk(0x8456000)                          = 0x8456000
brk(0x8457000)                          = 0x8457000
brk(0x8458000)                          = 0x8458000
brk(0x8459000)                          = 0x8459000
brk(0x845a000)                          = 0x845a000
brk(0x845b000)                          = 0x845b000
brk(0x845c000)                          = 0x845c000
brk(0x845d000)                          = 0x845d000
brk(0x845e000)                          = 0x845e000
brk(0x845f000)                          = 0x845f000
brk(0x8460000)                          = 0x8460000
brk(0x8461000)                          = 0x8461000
brk(0x8462000)                          = 0x8462000
brk(0x8463000)                          = 0x8463000
brk(0x8464000)                          = 0x8464000
brk(0x8465000)                          = 0x8465000
brk(0x8466000)                          = 0x8466000
brk(0x8467000)                          = 0x8467000
brk(0x8468000)                          = 0x8468000
brk(0x8469000)                          = 0x8469000
brk(0x846a000)                          = 0x846a000
brk(0x846b000)                          = 0x846b000
brk(0x846c000)                          = 0x846c000
brk(0x846d000)                          = 0x846d000
brk(0x846e000)                          = 0x846e000
brk(0x846f000)                          = 0x846f000
brk(0x8470000)                          = 0x8470000
brk(0x8471000)                          = 0x8471000
brk(0x8472000)                          = 0x8472000
brk(0x8473000)                          = 0x8473000
brk(0x8474000)                          = 0x8474000
brk(0x8475000)                          = 0x8475000
brk(0x8476000)                          = 0x8476000
getpid()                                = 27376
brk(0x8477000)                          = 0x8477000
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
brk(0x8478000)                          = 0x8478000
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
brk(0x8479000)                          = 0x8479000
brk(0x847a000)                          = 0x847a000
brk(0x847b000)                          = 0x847b000
brk(0x847d000)                          = 0x847d000
brk(0x847e000)                          = 0x847e000
brk(0x847f000)                          = 0x847f000
munmap(0x40450000, 266240)              = 0
old_mmap(NULL, 266240, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40450000
setitimer(ITIMER_PROF, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
setitimer(ITIMER_PROF, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
rt_sigaction(SIGPROF, {0x40318e80, [PROF], SA_RESTART|0x4000000}, {SIG_DFL}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [PROF], NULL, 8) = 0
open("tja.php", O_RDONLY)               = 3
fstat64(3, {st_mode=S_IFREG|0666, st_size=175, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "<?php\n\n$soapClient = new SoapCli"..., 4096) = 175
_llseek(3, 0, [0], SEEK_SET)            = 0
setitimer(ITIMER_PROF, {it_interval={0, 0}, it_value={0, 0}}, NULL) = 0
rt_sigaction(SIGPROF, {0x40318e80, [PROF], SA_RESTART|0x4000000}, {0x40318e80, [PROF], SA_RESTART|0x4000000}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [PROF], NULL, 8) = 0
time(NULL)                              = 1155053008
gettimeofday({1155053008, 157696}, NULL) = 0
getpid()                                = 27376
fstat64(0, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 2), ...}) = 0
lseek(0, 0, SEEK_CUR)                   = -1 ESPIPE (Illegal seek)
fstat64(1, {st_mode=S_IFREG|0644, st_size=29200, ...}) = 0
lseek(1, 0, SEEK_CUR)                   = 29268
fstat64(2, {st_mode=S_IFREG|0644, st_size=29307, ...}) = 0
lseek(2, 0, SEEK_CUR)                   = 29375
brk(0x8480000)                          = 0x8480000
getcwd("/appli/mmx/s1/web/agod", 4096)  = 23
time(NULL)                              = 1155053008
lstat64("/appli", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat64("/appli/mmx", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat64("/appli/mmx/s1", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
lstat64("/appli/mmx/s1/web", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
lstat64("/appli/mmx/s1/web/agod", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0
lstat64("/appli/mmx/s1/web/agod/tja.php", {st_mode=S_IFREG|0666, st_size=175, ...}) = 0
ioctl(3, SNDCTL_TMR_TIMEBASE, 0xbfffd868) = -1 ENOTTY (Inappropriate ioctl for device)
brk(0x8485000)                          = 0x8485000
read(3, "<?php\n\n$soapClient = new SoapCli"..., 8192) = 175
read(3, "", 4096)                       = 0
read(3, "", 8192)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
time(NULL)                              = 1155053008
time(NULL)                              = 1155053008
open("/tmp/wsdl-e2453d9b7158ecc88a1f3e751e3f0fa5", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64("https://domaine.name/webService/v1.0/Identification.asmx?wsdl", 0xbfffc2ec) = -1 ENOENT (No such file or directory)
stat64("https://domaine.name/webService/v1.0/Identification.asmx?wsdl", 0xbfffc2bc) = -1 ENOENT (No such file or directory)
stat64("/etc/xml/catalog", 0xbfffbfcc)  = -1 ENOENT (No such file or directory)
stat64("https://domaine.name/webService/v1.0/Identification.asmx?wsdl", 0xbfffc2bc) = -1 ENOENT (No such file or directory)
brk(0x848e000)                          = 0x848e000
rt_sigaction(SIGPIPE, {SIG_IGN}, {SIG_IGN}, 8) = 0
gettimeofday({1155053008, 159674}, NULL) = 0
gettimeofday({1155053008, 159700}, NULL) = 0
gettimeofday({1155053008, 159732}, NULL) = 0
gettimeofday({1155053008, 159771}, NULL) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [RTMIN], 8) = 0
gettimeofday({1155053008, 159994}, NULL) = 0
getpid()                                = 27376
open("/etc/resolv.conf", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=82, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "# Serveur de noms de \nna"..., 4096) = 82
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
uname({sys="Linux", node="Pros7s", ...}) = 0
socket(PF_UNIX, SOCK_STREAM, 0)         = 3
connect(3, {sin_family=AF_UNIX, path="/var/run/.nscd_socket"}, 110) = -1 ENOENT (No such file or directory)
close(3)                                = 0
open("/etc/nsswitch.conf", O_RDONLY)    = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=465, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "# /etc/nsswitch.conf\n#\n# Example"..., 4096) = 465
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
open("/opt/curl-7.15.4/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libnss_files.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=13041, ...}) = 0
old_mmap(NULL, 13041, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000
close(3)                                = 0
open("/lib/libnss_files.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\35\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=32668, ...}) = 0
old_mmap(NULL, 36112, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x40491000
mprotect(0x40499000, 3344, PROT_NONE)   = 0
old_mmap(0x40499000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x7000) = 0x40499000
close(3)                                = 0
munmap(0x40014000, 13041)               = 0
open("/etc/host.conf", O_RDONLY)        = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=21, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "order hosts\nmulti on\n", 4096) = 21
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
open("/etc/hosts", O_RDONLY)            = 3
fcntl64(3, F_GETFD)                     = 0
fcntl64(3, F_SETFD, FD_CLOEXEC)         = 0
fstat64(3, {st_mode=S_IFREG|0644, st_size=2864, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(3, "# syntaxe du style -*- sh -*-\n\n#"..., 4096) = 2864
read(3, "", 4096)                       = 0
close(3)                                = 0
munmap(0x40014000, 4096)                = 0
open("/opt/curl-7.15.4/lib/libnss_dns.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/lib/libnss_dns.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/openssl-0.9.7d/lib/libnss_dns.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/local/pgsql/lib/libnss_dns.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)      = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=13041, ...}) = 0
old_mmap(NULL, 13041, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40014000
close(3)                                = 0
open("/lib/libnss_dns.so.2", O_RDONLY)  = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\r\0\000"..., 1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=12176, ...}) = 0
old_mmap(NULL, 15144, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x4049a000
mprotect(0x4049d000, 2856, PROT_NONE)   = 0
old_mmap(0x4049d000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 3, 0x2000) = 0x4049d000
close(3)                                = 0
munmap(0x40014000, 13041)               = 0
socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 3
connect(3, {sin_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.253.40")}}, 28) = 0
send(3, "\257\333\1\0\0\1\0\0\0\0\0\0\17annuaireclients\10pro"..., 42, 0) = 42
gettimeofday({1155053008, 163210}, NULL) = 0
poll([{fd=3, events=POLLIN, revents=POLLIN}], 1, 5000) = 1
recvfrom(3, "\257\333\201\200\0\1\0\1\0\3\0\3\17annuaireclients\10p"..., 1024, 0, {sin_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("192.168.253.40")}}, [16]) = 172
close(3)                                = 0
time([1155053008])                      = 1155053008
gettimeofday({1155053008, 165338}, NULL) = 0
gettimeofday({1155053008, 165386}, NULL) = 0
gettimeofday({1155053008, 165414}, NULL) = 0
socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 3
fcntl64(3, F_GETFL)                     = 0x2 (flags O_RDWR)
fcntl64(3, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
connect(3, {sin_family=AF_INET, sin_port=htons(443), sin_addr=inet_addr("172.17.36.30")}}, 16) = -1 EINPROGRESS (Operation now in progress)
poll([{fd=3, events=POLLOUT}], 1, 0)    = 0
gettimeofday({1155053008, 165751}, NULL) = 0
gettimeofday({1155053008, 165777}, NULL) = 0
gettimeofday({1155053008, 165809}, NULL) = 0
gettimeofday({1155053008, 165837}, NULL) = 0
poll([{fd=3, events=POLLOUT}], 1, 0)    = 0
gettimeofday({1155053008, 165902}, NULL) = 0
gettimeofday({1155053008, 166069}, NULL) = 0
gettimeofday({1155053008, 166094}, NULL) = 0
poll([{fd=3, events=POLLOUT}], 1, 0)    = 0
gettimeofday({1155053008, 166149}, NULL) = 0
select(4, [], [3], [], {15, 0})         = 1 (out [3], left {14, 810000})
gettimeofday({1155053008, 364665}, NULL) = 0
gettimeofday({1155053008, 364692}, NULL) = 0
poll([{fd=3, events=POLLOUT, revents=POLLOUT}], 1, 0) = 1
getsockopt(3, SOL_SOCKET, SO_ERROR, [0], [4]) = 0
gettimeofday({1155053008, 364817}, NULL) = 0
gettimeofday({1155053008, 364843}, NULL) = 0
stat64("/dev/urandom", {st_mode=S_IFCHR|0666, st_rdev=makedev(1, 9), ...}) = 0
open("/dev/urandom", O_RDONLY)          = 4
read(4, "\213\303\200|\302R\17\3\27\207\275\332\301\201Z|\361.\337"..., 1024) = 1024
close(4)                                = 0
getpid()                                = 27376
getpid()                                = 27376
open("/dev/urandom", O_RDONLY|O_NONBLOCK|O_NOCTTY) = 4
select(5, [4], NULL, NULL, {0, 10000})  = 1 (in [4], left {0, 10000})
read(4, "\376\315\246\321\302\376\2508\364\231S\340\27CS\355\337"..., 32) = 32
close(4)                                = 0
getpid()                                = 27376
getpid()                                = 27376
getuid32()                              = 0
getpid()                                = 27376
time(NULL)                              = 1155053008
getpid()                                = 27376
open("/opt/curl-7.15.4/share/curl/curl-ca-bundle.crt", O_RDONLY) = 4
fstat64(4, {st_mode=S_IFREG|0644, st_size=238102, ...}) = 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40014000
read(4, "##\n## $Id: ca-bundle.crt,v 1.2 2"..., 4096) = 4096
brk(0x848f000)                          = 0x848f000
read(4, "001)\n        X509v3 extensions:\n"..., 4096) = 4096
brk(0x8490000)                          = 0x8490000
read(4, "ey Usage Period: \n              "..., 4096) = 4096
read(4, "BAgICAIUwDQYJKoZIhvcNAQEFBQAwgZY"..., 4096) = 4096
brk(0x8491000)                          = 0x8491000
read(4, "69:4c:46:69:\n        fc:2a:ad:16"..., 4096) = 4096
brk(0x8492000)                          = 0x8492000
read(4, "DExhCZWxTaWduIFNlY3VyZSBTZXJ2ZXI"..., 4096) = 4096
brk(0x8493000)                          = 0x8493000
brk(0x8494000)                          = 0x8494000
read(4, "CA\n        Validity\n            "..., 4096) = 4096
brk(0x8495000)                          = 0x8495000
read(4, "e:49:4d:ed:a2:a3:\n              "..., 4096) = 4096
brk(0x8496000)                          = 0x8496000
read(4, ":37:02:8f:69:\n                  "..., 4096) = 4096
read(4, "             de:49:27:ff:48:2a:7"..., 4096) = 4096
brk(0x8497000)                          = 0x8497000
brk(0x8498000)                          = 0x8498000
read(4, "         26:0b:da:dc:6d:d6:a9:99"..., 4096) = 4096
read(4, "                   fa:83:94:fc:7"..., 4096) = 4096
brk(0x8499000)                          = 0x8499000
read(4, "   Modulus (2048 bit):\n         "..., 4096) = 4096
read(4, "TkxMDEyMTkyNDMwWjALBgNVHQ8E\nBAMC"..., 4096) = 4096
brk(0x849a000)                          = 0x849a000
brk(0x849b000)                          = 0x849b000
read(4, "XR5MIGdMA0GCSqGSIb3DQEBAQUA\nA4GL"..., 4096) = 4096
brk(0x849c000)                          = 0x849c000
read(4, "--BEGIN CERTIFICATE-----\nMIIDIzC"..., 4096) = 4096
read(4, "UEZKzxa1NfBbPLZ4C/QgKO/t0BCezhAB"..., 4096) = 4096
brk(0x849d000)                          = 0x849d000
read(4, "----END CERTIFICATE-----\nCertifi"..., 4096) = 4096
brk(0x849e000)                          = 0x849e000
read(4, "80:df:\n        1e:e3:7a:18:cc:57"..., 4096) = 4096
brk(0x849f000)                          = 0x849f000
brk(0x84a0000)                          = 0x84a0000
read(4, "n, OU=GTE CyberTrust Solutions, "..., 4096) = 4096
read(4, "da:ea:dd:bd:17:9f:1d:51:01:a8:e8"..., 4096) = 4096
brk(0x84a1000)                          = 0x84a1000
read(4, "4:0a:40:4c:f3:86:e2:61:c1:3c:49:"..., 4096) = 4096
brk(0x84a2000)                          = 0x84a2000
read(4, ":cd:8f:4d:b5:91:23:6c:8b:8a:eb:e"..., 4096) = 4096
read(4, "cRxGXi0VlS0wWY5MQdFiqz0CAwEAAaNj"..., 4096) = 4096
brk(0x84a3000)                          = 0x84a3000
read(4, "UxMjAw\nMDBaFw0wOTAxMjgxMjAwMDBaM"..., 4096) = 4096
brk(0x84a4000)                          = 0x84a4000
read(4, "34:\n        87:63:ab:2d:8d:4c:00"..., 4096) = 4096
brk(0x84a5000)                          = 0x84a5000
read(4, ":\n        46:5d:8f:f2:6d:45:3c:8"..., 4096) = 4096
brk(0x84a6000)                          = 0x84a6000
read(4, "     X509v3 Key Usage: critical\n"..., 4096) = 4096
brk(0x84a7000)                          = 0x84a7000
read(4, "93:13:85:3a:1b:\n                "..., 4096) = 4096
brk(0x84a8000)                          = 0x84a8000
read(4, "9:72:\n                    6a:00:"..., 4096) = 4096
brk(0x84a9000)                          = 0x84a9000
read(4, " 13:56:33 1998 GMT\n            N"..., 4096) = 4096
brk(0x84aa000)                          = 0x84aa000
read(4, " Not Before: Mar  9 13:57:44 199"..., 4096) = 4096
brk(0x84ab000)                          = 0x84ab000
read(4, "alidity\n            Not Before: "..., 4096) = 4096
brk(0x84ac000)                          = 0x84ac000
read(4, "center.de\n        Validity\n     "..., 4096) = 4096
brk(0x84ad000)                          = 0x84ad000
read(4, "ryption\n            RSA Public K"..., 4096) = 4096
brk(0x84ae000)                          = 0x84ae000
read(4, ": md5WithRSAEncryption\n        c"..., 4096) = 4096
brk(0x84af000)                          = 0x84af000
read(4, "WNlcyBEaXZpc2lvbjEhMB8GA1UEAxMYV"..., 4096) = 4096
brk(0x84b0000)                          = 0x84b0000
read(4, "P/iiMucEc=\n-----END CERTIFICATE-"..., 4096) = 4096
brk(0x84b1000)                          = 0x84b1000
read(4, "saj5IcXb7R8lvyq6qp0vW4pEErK5FuEk"..., 4096) = 4096
brk(0x84b2000)                          = 0x84b2000
brk(0x84b4000)                          = 0x84b4000
read(4, " Number: 0 (0x0)\n        Signatu"..., 4096) = 4096
read(4, "8:d8:a1:a2:82:2d:0c:f8:c1:af:63:"..., 4096) = 4096
read(4, ":ba:b9:fc:88:0f:47:f7:02:44:72:4"..., 4096) = 4096
read(4, ":88:4c:9d:55:e5:c9:6e:17:04:b7:4"..., 4096) = 4096
read(4, "81:a6:e9:5c:61:9c:77:79:9a:a4:c3"..., 4096) = 4096
read(4, "54:b8:79:\n        2d:5b:72:05:6a"..., 4096) = 4096
read(4, "luYy4xNTAz\nBgNVBAsTLFZhbGlDZXJ0I"..., 4096) = 4096
brk(0x84b5000)                          = 0x84b5000
brk(0x84b6000)                          = 0x84b6000
read(4, "AEncryption\n        Issuer: L=Va"..., 4096) = 4096
read(4, "  7a:b3:b7:ff:b1:dc:99:83:dc:ac:"..., 4096) = 4096
brk(0x84b7000)                          = 0x84b7000
read(4, "k/AVNtmU/t5eIqWpDBucSm\nFc/IReumX"..., 4096) = 4096
brk(0x84b8000)                          = 0x84b8000
brk(0x84b9000)                          = 0x84b9000
read(4, "e Algorithm: sha1WithRSAEncrypti"..., 4096) = 4096
read(4, " Certification Authority\n       "..., 4096) = 4096
brk(0x84ba000)                          = 0x84ba000
read(4, "              86:c9:54:f2:b2:c4:"..., 4096) = 4096
brk(0x84bb000)                          = 0x84bb000
read(4, "             1d:0d:9c:a4:20:a6:c"..., 4096) = 4096
read(4, "===================\nMD5 Fingerpr"..., 4096) = 4096
brk(0x84bc000)                          = 0x84bc000
read(4, "kQr1F8ilYcEWQE37imGQ5XYgwREGfass"..., 4096) = 4096
brk(0x84bd000)                          = 0x84bd000
read(4, "IEF1dGhvcml0eSAtIEcy\nMTowOAYDVQQ"..., 4096) = 4096
brk(0x84be000)                          = 0x84be000
read(4, "jDDZq3/\nky2X7wMCAwEAATANBgkqhkiG"..., 4096) = 4096
brk(0x84bf000)                          = 0x84bf000
read(4, "9O2nZ6wIDAQABMA0GCSqGSIb3DQEBAgU"..., 4096) = 4096
brk(0x84c0000)                          = 0x84c0000
read(4, "c8:1e:7b\n                Exponen"..., 4096) = 534
read(4, "", 4096)                       = 0
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
close(4)                                = 0
munmap(0x40014000, 4096)                = 0
gettimeofday({1155053008, 380850}, NULL) = 0
time(NULL)                              = 1155053008
getpid()                                = 27376
brk(0x84c6000)                          = 0x84c6000
brk(0x84cf000)                          = 0x84cf000
brk(0x84d4000)                          = 0x84d4000
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
getpid()                                = 27376
write(3, "\200\202\1\3\1\0i\0\0\0\20\0\0009\0\0008\0\0005\0\0\26"..., 132) = 132
read(3, 0x84c4dd0, 7)                   = -1 EAGAIN (Resource temporarily unavailable)
getpid()                                = 27376
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 382762}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 382990}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 383183}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 383377}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 383571}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 383764}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 383958}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 384178}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 384371}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 384584}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 384777}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 384971}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 385165}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 385359}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 385552}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 385745}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 385939}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 386132}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 386326}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 386519}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 386713}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 386907}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 387100}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 387295}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 387489}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 387682}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 387876}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 388069}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 388263}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 388457}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 388652}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 388845}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 389039}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 389241}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 389435}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 389630}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 389823}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390017}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390210}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390404}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390597}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390791}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 390986}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 391179}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 391373}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 391566}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 391760}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 391953}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 392147}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 392340}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 392534}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 392728}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 392922}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 393117}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 393310}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 393504}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 393697}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 393891}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 394084}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 394288}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 394482}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 394689}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 394882}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 395077}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 395270}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 395463}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 395656}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 395850}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 396044}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 396237}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 396431}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 396624}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 396818}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397012}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397207}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397400}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397594}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397787}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 397980}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 398173}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 398366}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 398560}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 398754}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 398948}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 399141}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 399344}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 399538}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 399732}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 399925}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 400119}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 400313}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 400506}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 400699}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 400892}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 401086}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 401279}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 401473}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 401666}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 401859}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 402053}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 402246}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 402440}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 402633}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], left {15, 0})
poll([{fd=3, events=POLLIN}], 1, 0)     = 0
gettimeofday({1155053008, 402827}, NULL) = 0
select(4, [3], [3], [], {15, 0})        = 1 (out [3], le
 [2006-08-21 10:51 UTC] tja at mgn dot net
Have you got any idea to solve the problem ?
 [2006-08-22 06:30 UTC] dmitry@php.net
HTTPS works fine for me. At least the following example:

<?php
$client = new SoapClient(
  'https://arcweb.esri.com/services/v2/AddressFinder.wsdl',
  array('login'=>'login','password'=>'pwd'));
var_dump($client->__getFunctions());
?>

Probably the problem in your web server.
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Tue May 13 07:01:26 2025 UTC