Annotation of embedaddon/php/ext/soap/tests/bug46760.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #46760 (SoapClient doRequest fails when proxy is used)
                      3: --SKIPIF--
                      4: <?php require_once('skipif.inc'); ?>
                      5: --FILE--
                      6: <?php
                      7: 
                      8: $client = new SoapClient(null, array('proxy_host'     => "localhost",
                      9:                                             'proxy_port'     => '8080',
                     10:                                             'login'    => "user",
                     11:                                                                                'password' => "test",
                     12:                                                                                        'uri'            => 'mo:http://www.w3.org/',
                     13:                                                                                        'location'       => 'http://some.url'));
                     14: var_dump($client->_proxy_port);
                     15: 
                     16: ?>
                     17: --EXPECT--
                     18: int(8080)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>