File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / bug46760.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:01 2012 UTC (12 years, 6 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
Bug #46760 (SoapClient doRequest fails when proxy is used)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

$client = new SoapClient(null, array('proxy_host'     => "localhost",
                                            'proxy_port'     => '8080',
                                            'login'    => "user",
									        'password' => "test",
											'uri'            => 'mo:http://www.w3.org/',
											'location'       => 'http://some.url'));
var_dump($client->_proxy_port);

?>
--EXPECT--
int(8080)

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