summaryrefslogtreecommitdiff
path: root/ext/soap/php_sdl.c
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* Fixed bug #49144 (import of schema from different host transmits original ↵Dmitry Stogov2009-08-171-0/+60
| | | | authentication details)
* - This is PHP 6 - if this ... ever gets outMarcus Boerger2009-03-101-1/+1
|
* Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #43069 (SoapClient causes 505 HTTP Version not supported error ↵Dmitry Stogov2008-12-011-0/+15
| | | | message)
* Fixed SOAP binding selectionDmitry Stogov2008-06-181-2/+2
|
* - Fixed bug #44811 (Improve error message when creating new SoapClientDavid Coallier2008-05-071-1/+6
| | | | | that contains invalid data)
* Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #42952 (soap cache file is created with insecure permissions)Dmitry Stogov2007-11-231-3/+11
|
* Fixed bug #41337 WSDL parsing doesn't ignore non soap bindingsDmitry Stogov2007-05-211-1/+1
|
* Fixed bug #41337 (WSDL parsing doesn't ignore non soap bindings)Dmitry Stogov2007-05-101-1/+9
|
* Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFB: Optimize out zend_hash_num_elements() callIlia Alshanetsky2006-12-211-2/+2
|
* Added ability to make SOAP call userspace PHP<->XML convertersDmitry Stogov2006-09-201-4/+0
|
* Reimplemented SoapServer and SoapClient classes using ZE2 object API.Dmitry Stogov2006-07-311-41/+40
| | | | | All internal properties are hidden now.
* Unicode support (not finished)Dmitry Stogov2006-07-131-23/+23
|
* Nuke signed/unsigned compiler warningsDmitry Stogov2006-07-111-58/+58
|
* Fixed bug #37862 (Integer pointer comparison to numeric value)Dmitry Stogov2006-06-261-1/+1
|
* Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and ↵Dmitry Stogov2006-04-191-107/+147
| | | | | | | | | | | | LIMIT for memory cache. Memory cache is disblead by fefault because it is experemental and isn't tested enough. It can be enabled whit configuartion directive "soap.wsdl_cache = WSDL_CACHE_MEMORY" or "soap.wsdl_cache = WSDL_CACHE_BOTH" or derectly in SoapClent/Soa pServer constructor: $ws = new SoapClient($wsdl, array("cache_wsdl"=>WSDL_CACHE_BOTH)) Disk and memory caches use the same TTL value - "soap.wsdl_cache_ttl". Configuration directive "soap.wsdl_cache_limit" restricts the number of cached w sdl files in memory. Adding new files into full memory cache will delete oldest files from it. Note that, each PHP process or thread uses it's own memory cache.
* Fixed bug #37083 (Frequent crashs in SOAP extension with new WSDL caching ↵Dmitry Stogov2006-04-181-5/+10
| | | | code in multithread WS). (Andrei, Dmitry)
* MFBAndrei Zmievski2006-04-171-5/+5
|
* Fixed several bugs in new "caching WSDL in memory" codeDmitry Stogov2006-04-171-23/+32
| | | | | Re-enabled disk cache
* ZTS fixDmitry Stogov2006-04-101-1/+1
|
* MFBAndrei Zmievski2006-04-091-6/+970
|
* initialize variables and reduce the number of warningsAntony Dovgal2006-02-061-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixed possible SIGSEGV (Rob Richards)Dmitry Stogov2005-12-091-4/+4
|
* Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of ↵Dmitry Stogov2005-11-281-0/+34
| | | | soapenc:base64binary fails)
* Fixed bug #35273 (Error in mapping soap - java types)Dmitry Stogov2005-11-181-11/+27
|
* Fixed bug #34950 (Unable to get WSDL through proxy)Dmitry Stogov2005-10-241-0/+6
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fixed ZTS buildDmitry Stogov2005-08-021-3/+3
|
* "_local_cert" and "_passphrase" properties moved into "_stream_context".Dmitry Stogov2005-07-201-2/+9
| | | | | As a result now it is possible to use certificates during access WSDL files.
* Fixed HTTP basic authentication headers during subrequsts to xsd filesDmitry Stogov2005-07-081-33/+58
|
* Fixed bug #32941 (Sending structured SOAP fault kills a php)Dmitry Stogov2005-06-011-14/+19
|
* Fixed WSDL cache bugDmitry Stogov2005-04-291-3/+3
|
* Support for element's form and schema's elementFormDefault attributes ↵Dmitry Stogov2005-04-201-1/+3
| | | | (qualified/unqualified)
* Fixed wrong SOAP headers encoding/decoding.Dmitry Stogov2005-03-281-1/+5
|
* Support for <soap:body> "parts" attributeDmitry Stogov2005-03-211-8/+38
|
* Revert bad fixfoobar2005-03-171-1/+1
|
* Fix Jani breakageRasmus Lerdorf2005-03-161-1/+1
|
* Fixed SIGSEGV when restoring WSDL without functions from cacheDmitry Stogov2005-01-311-1/+1
|
* Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob)Dmitry Stogov2004-11-091-8/+42
|
* Fix TSRM buildMarcus Boerger2004-09-261-1/+0
|
* Fixed bug #30182 (SOAP module processing WSDL file dumps core).Dmitry Stogov2004-09-221-2/+3
|
* Fixed bug #29839 (incorrect convert (xml:lang to lang))Dmitry Stogov2004-08-261-30/+0
|
* Fixed bug #29839 (incorrect convert (xml:lang to lang))Dmitry Stogov2004-08-261-29/+65
|
* Fixed bugs #29109 and #29236. (WSDL cache failure)Dmitry Stogov2004-07-191-20/+16
|
* Eliminate alloca() calls where they can be affected by the users.Ilia Alshanetsky2004-07-051-8/+8
|
* php_error() -> php_error_docref() (Marcus, Dmitry)Dmitry Stogov2004-05-051-51/+51
|