diff options
author | Felipe Pena <felipe@php.net> | 2009-01-05 22:19:23 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2009-01-05 22:19:23 +0000 |
commit | 5a3b59995ff6e7f4888e24722a80d04e99ffab8a (patch) | |
tree | b94158961a52573fad8f67f3413264ee716ddcdc | |
parent | 4ed88343cc51a1d8e14ce633cca26b7d724230dc (diff) | |
download | php-git-5a3b59995ff6e7f4888e24722a80d04e99ffab8a.tar.gz |
- New test
-rw-r--r-- | ext/soap/tests/bug46760.phpt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/soap/tests/bug46760.phpt b/ext/soap/tests/bug46760.phpt new file mode 100644 index 0000000000..0b7c9ab4c1 --- /dev/null +++ b/ext/soap/tests/bug46760.phpt @@ -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) |