- New test

This commit is contained in:
Felipe Pena 2009-01-05 22:19:23 +00:00
parent 4ed88343cc
commit 5a3b59995f

View File

@ -0,0 +1,16 @@
--TEST--
Bug #46760 (SoapClient doRequest fails when proxy is used)
--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)