summaryrefslogtreecommitdiff
path: root/ext/soap/php_http.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Allow SOAP work when allow_url_fopen is turned off.Dmitry Stogov2005-08-011-1/+8
|
* "_local_cert" and "_passphrase" properties moved into "_stream_context".Dmitry Stogov2005-07-201-14/+1
| | | | | As a result now it is possible to use certificates during access WSDL files.
* Remove stale #ifdefs (this is PHP 5 only code).Wez Furlong2005-07-191-31/+10
| | | | | | | 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.
* Fixed HTTP basic authentication headers during subrequsts to xsd filesDmitry Stogov2005-07-081-1/+27
|
* Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1).Ilia Alshanetsky2005-05-301-1/+1
|
* Handling responses with Content-Lenght: 0Dmitry Stogov2005-05-231-0/+8
|
* Fixed SIGSEGVDmitry Stogov2005-05-101-1/+1
|
* "<?xml ..." header is not required by SOAP specificationDmitry Stogov2005-05-101-6/+10
|
* Allow define connection timeout throught "connection_timeout" option in ↵Dmitry Stogov2005-03-231-3/+11
| | | | SoapClient constructor.
* Fixed bug #32326 (Check values of Connection/Transfer-EncodingIlia Alshanetsky2005-03-161-2/+2
| | | | | case-incentively).
* Fixed bug #31747 (SOAP Digest Authentication doesn't work with "HTTP/1.1 100 ↵Dmitry Stogov2005-02-021-39/+32
| | | | Continue" response)
* Fixed bug #31755 (Cannot create SOAP header in no namespace)Dmitry Stogov2005-02-021-0/+2
|
* Fixed bug #28041 (SOAP HTTP Digest Access Authentication was implemented)Dmitry Stogov2005-01-251-64/+285
|
* Support for HTTP error codesDmitry Stogov2005-01-201-18/+40
|
* Fixed bug #30901 (can't send cookies with soap envelop).Dmitry Stogov2005-01-201-4/+4
| | | | | void SoapClient::__setCookie(string name [, string value])
* Support for HTTPS with digital certificates.Dmitry Stogov2005-01-201-1/+16
|
* Fixed bug #30329 (Error Fetching http body, No Content-Length, connection ↵Dmitry Stogov2004-12-011-19/+21
| | | | closed or chunked data).
* Port 443 is default for https, so we shouldn't put it into Host:Dmitry Stogov2004-12-011-1/+1
|
* Fixed bug #30359 (SOAP client requests have no port in "Host" field ).Dmitry Stogov2004-12-011-0/+4
|
* Fixed bug #30685 (Malformed SOAPClient http header reequest).Dmitry Stogov2004-11-041-4/+5
|
* Fix for Bug #24189: possibly unsafe select(2) usage.Wez Furlong2004-09-171-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* BUGFIX: Segfault if server's URL has no path. ("http://192.168.8.1:180")Dmitry Stogov2004-06-221-9/+13
|
* Support for HTTP redirection.Dmitry Stogov2004-06-211-178/+196
|
* Fixed bug #28702 (SOAP does not parse WSDL service address correctly).Dmitry Stogov2004-06-101-0/+4
|
* BUGFIX: Prevent crash on error in send_http_soap_request()Dmitry Stogov2004-05-271-7/+0
|
* Allowing user defined SOAP transports with SoapClient::__doRequest()Dmitry Stogov2004-05-201-18/+4
|
* Fixed: possible remote overflow and possible efree(NULL) crashStefan Esser2004-04-081-3/+20
|
* Support for domain cookiesDmitry Stogov2004-04-021-1/+16
|
* SoapClint support for multiple hosts (through WSDL) with cookies.Dmitry Stogov2004-04-021-64/+152
|
* Some small improvments, support for new style constructors, support for ↵Dmitry Stogov2004-04-011-1/+1
| | | | exceptions other then SoapFault
* HTTP compression support (gzip and deflate)Dmitry Stogov2004-02-251-12/+111
|
* BUGFIX: bug in HTTP chunked encoding was fixedDmitry Stogov2004-02-201-5/+5
|
* Reading HTTP responses without "Content-Length:" but with "Connection: close"Dmitry Stogov2004-02-191-22/+30
|
* BUGFIX: HTTP chunked transfer-encoding supportDmitry Stogov2004-02-181-13/+28
|
* fix: prevent of possible crashDmitry Stogov2004-02-161-2/+2
|
* Initial support for client-part SOAP headers (very incomlete)Dmitry Stogov2004-02-031-4/+3
|
* TSRM fixesMarcus Boerger2004-02-021-0/+2
|
* Server part support for "document" style encoding was implementedDmitry Stogov2004-01-301-3/+5
|
* SOAP 1.2 specification conformity was improvedDmitry Stogov2004-01-301-5/+13
|
* Support for https:// through proxy was implementedDmitry Stogov2004-01-301-95/+92
|
* *** empty log message ***Dmitry Stogov2004-01-291-19/+51
|
* Rollback: persistent PHP streams (dont work with "kafka")Dmitry Stogov2004-01-291-15/+0
|
* PHP4 supportDmitry Stogov2004-01-291-30/+100
| | | | | | HTTP proxy support for PHP4 Using persistent PHP streams for HTTP connections
* fix: "Authors" correctedDmitry Stogov2004-01-291-1/+3
|
* Support for HTTP proxies was implementedDmitry Stogov2004-01-291-14/+73
|
* - Add our standard headerDerick Rethans2004-01-291-0/+19
|
* Error reoprting improved by prefixDmitry Stogov2004-01-281-20/+26
| | | | | | New 'HTTP' fault code Source cleanup
* Source cleanupDmitry Stogov2004-01-281-1/+1
|
* fix: HTTP keep-aliveDmitry Stogov2004-01-271-0/+2
|
* enabling HTTP status code 100 (used by Delphi SOAP)Dmitry Stogov2004-01-271-3/+2
|