Dmitry Stogov
76d748f372
Fixed support for endpoint's URL without <path> part (Rob)
2006-09-06 11:03:45 +00:00
Dmitry Stogov
ee1dc90d1e
Nuke signed/unsigned compiler warnings
2006-07-11 14:24:18 +00:00
Ilia Alshanetsky
58c82af64d
Improved the error reporting in SOAP extension on request failure.
2006-06-27 23:32:56 +00:00
Dmitry Stogov
f897cff480
Fixed bug #37054 (SoapClient Error Fetching http headers)
2006-04-13 08:18:36 +00:00
Dmitry Stogov
110021f4c7
Fixed bug #36749 (SOAP: 'Error Fetching http body' when using HTTP Proxy)
2006-03-20 10:36:55 +00:00
Dmitry Stogov
9167991f69
Compression level shouldn't be greatr then 9.
2006-02-07 12:57:28 +00:00
Dmitry Stogov
73605400e8
Fixed bug #36083 (SoapClient waits for responses on one-way operations)
2006-02-07 12:49:10 +00:00
Dmitry Stogov
f2772ecc0d
Fixed bug #36283 (SOAPClient Compression Broken).
2006-02-06 10:16:03 +00:00
foobar
5bd93221a8
bump year and license version
2006-01-01 12:51:34 +00:00
Dmitry Stogov
db312cf18e
Fixed bug #35570 (segfault when re-using soap client object)
2005-12-12 09:25:23 +00:00
Dmitry Stogov
9e8bf1a20f
Fixed bug #33394 (Socket Timeout on SOAP request causes general exception in Apache process).
2005-12-07 13:56:18 +00:00
Antony Dovgal
305e946358
MFH: nuke unused vars
2005-10-12 14:04:02 +00:00
Dmitry Stogov
2cbe63513c
Fixed bug #34766 (possible crash on HTTP redirection)
2005-10-07 11:56:19 +00:00
Dmitry Stogov
27763b3666
Fixed bug #34478 (Incorrect parsing of url's fragment (#...))
2005-09-16 15:48:30 +00:00
foobar
23e671a51e
- Bumber up year
2005-08-03 14:08:58 +00:00
Dmitry Stogov
1066066436
Allow SOAP work when allow_url_fopen is turned off.
2005-08-01 11:38:02 +00:00
Dmitry Stogov
e07d2f4803
"_local_cert" and "_passphrase" properties moved into "_stream_context".
...
As a result now it is possible to use certificates during access WSDL files.
2005-07-20 10:21:49 +00:00
Wez Furlong
3b5af6d43f
Remove stale #ifdefs (this is PHP 5 only code).
...
Add a stream_context option to the SoapClient constructor; this allows
generic stream context options to be set without having to add code to the
SoapClient every time a context option is added.
2005-07-19 19:48:02 +00:00
Dmitry Stogov
76a447c900
Fixed HTTP basic authentication headers during subrequsts to xsd files
2005-07-08 09:36:28 +00:00
Ilia Alshanetsky
b28b401c78
Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1).
2005-05-30 23:46:08 +00:00
Dmitry Stogov
1417cbaf30
Handling responses with Content-Lenght: 0
2005-05-23 06:25:16 +00:00
Dmitry Stogov
bd996f23f2
Fixed SIGSEGV
2005-05-10 10:20:58 +00:00
Dmitry Stogov
61ba13bf72
"<?xml ..." header is not required by SOAP specification
2005-05-10 08:16:14 +00:00
Dmitry Stogov
e31bc5a643
Allow define connection timeout throught "connection_timeout" option in SoapClient constructor.
2005-03-23 08:08:54 +00:00
Ilia Alshanetsky
d247e074a7
Fixed bug #32326 (Check values of Connection/Transfer-Encoding
...
case-incentively).
2005-03-16 20:30:17 +00:00
Dmitry Stogov
3c31410074
Fixed bug #31747 (SOAP Digest Authentication doesn't work with "HTTP/1.1 100 Continue" response)
2005-02-02 10:34:39 +00:00
Dmitry Stogov
83e6e40438
Fixed bug #31755 (Cannot create SOAP header in no namespace)
2005-02-02 09:11:46 +00:00
Dmitry Stogov
2d8e73b963
Fixed bug #28041 (SOAP HTTP Digest Access Authentication was implemented)
2005-01-25 11:03:20 +00:00
Dmitry Stogov
a343fc848d
Support for HTTP error codes
2005-01-20 17:29:16 +00:00
Dmitry Stogov
c35353ea20
Fixed bug #30901 (can't send cookies with soap envelop).
...
void SoapClient::__setCookie(string name [, string value])
2005-01-20 14:29:19 +00:00
Dmitry Stogov
56025c6a1a
Support for HTTPS with digital certificates.
2005-01-20 06:08:04 +00:00
Dmitry Stogov
a1c85ca6f2
Fixed bug #30329 (Error Fetching http body, No Content-Length, connection closed or chunked data).
2004-12-01 18:22:40 +00:00
Dmitry Stogov
5b074c048d
Port 443 is default for https, so we shouldn't put it into Host:
2004-12-01 17:33:32 +00:00
Dmitry Stogov
ec4b6f713d
Fixed bug #30359 (SOAP client requests have no port in "Host" field ).
2004-12-01 16:59:48 +00:00
Dmitry Stogov
75c2a2e527
Fixed bug #30685 (Malformed SOAPClient http header reequest).
2004-11-04 15:30:28 +00:00
Wez Furlong
99e290f882
Fix for Bug #24189 : possibly unsafe select(2) usage.
...
We avoid the problem by using poll(2).
On systems without poll(2) (older bsd-ish systems, and win32), we emulate
poll(2) using select(2) and check for valid descriptors before attempting
to access them via the descriptor sets.
If an out-of-range descriptor is detected, an E_WARNING is raised suggesting
that PHP should be recompiled with a larger FD_SETSIZE (and also with a
suggested value).
Most uses of select(2) in the source are to poll a single descriptor, so
a couple of handy wrapper functions have been added to make this easier.
A configure option --enable-fd-setsize has been added to both the unix and
win32 builds; on unix we default to 16384 and on windows we default to 256.
Windows FD_SETSIZE imposes a limit on the maximum number of descriptors that
can be select()ed at once, whereas the unix FD_SETSIZE limit is based on the
highest numbered descriptor; 256 should be plenty for PHP scripts under windows
(the default OS setting is 64).
The win32 specific parts are untested; will do that now.
2004-09-17 12:44:56 +00:00
Dmitry Stogov
4ea8f4b9f2
BUGFIX: Segfault if server's URL has no path. (" http://192.168.8.1:180 ")
2004-06-22 12:42:17 +00:00
Dmitry Stogov
d9226a1dd0
Support for HTTP redirection.
2004-06-21 12:56:33 +00:00
Dmitry Stogov
0282ad792a
Fixed bug #28702 (SOAP does not parse WSDL service address correctly).
2004-06-10 09:07:09 +00:00
Dmitry Stogov
2b3e184245
BUGFIX: Prevent crash on error in send_http_soap_request()
2004-05-27 07:58:22 +00:00
Dmitry Stogov
38ef28e41b
Allowing user defined SOAP transports with SoapClient::__doRequest()
2004-05-20 16:55:03 +00:00
Stefan Esser
6b12a45247
Fixed: possible remote overflow and possible efree(NULL) crash
2004-04-08 14:58:04 +00:00
Dmitry Stogov
b010daa9c4
Support for domain cookies
2004-04-02 15:43:41 +00:00
Dmitry Stogov
6f6ef6deed
SoapClint support for multiple hosts (through WSDL) with cookies.
2004-04-02 11:12:44 +00:00
Dmitry Stogov
40bb734452
Some small improvments, support for new style constructors, support for exceptions other then SoapFault
2004-04-01 10:47:44 +00:00
Dmitry Stogov
32b6d2fbf8
HTTP compression support (gzip and deflate)
2004-02-25 14:04:41 +00:00
Dmitry Stogov
8fc285275c
BUGFIX: bug in HTTP chunked encoding was fixed
2004-02-20 15:38:39 +00:00
Dmitry Stogov
bac453038a
Reading HTTP responses without "Content-Length:" but with "Connection: close"
2004-02-19 16:49:50 +00:00
Dmitry Stogov
9cb54cb232
BUGFIX: HTTP chunked transfer-encoding support
2004-02-18 06:58:33 +00:00
Dmitry Stogov
6aad56d4a2
fix: prevent of possible crash
2004-02-16 09:56:30 +00:00