| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixed bug #41337 WSDL parsing doesn't ignore non soap bindings | Dmitry Stogov | 2007-05-21 | 1 | -1/+1 |
| | | |||||
| * | Fixed bug #41337 (WSDL parsing doesn't ignore non soap bindings) | Dmitry Stogov | 2007-05-10 | 1 | -1/+9 |
| | | |||||
| * | Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | | |||||
| * | MFB: Optimize out zend_hash_num_elements() call | Ilia Alshanetsky | 2006-12-21 | 1 | -2/+2 |
| | | |||||
| * | Added ability to make SOAP call userspace PHP<->XML converters | Dmitry Stogov | 2006-09-20 | 1 | -4/+0 |
| | | |||||
| * | Reimplemented SoapServer and SoapClient classes using ZE2 object API. | Dmitry Stogov | 2006-07-31 | 1 | -41/+40 |
| | | | | | | All internal properties are hidden now. | ||||
| * | Unicode support (not finished) | Dmitry Stogov | 2006-07-13 | 1 | -23/+23 |
| | | |||||
| * | Nuke signed/unsigned compiler warnings | Dmitry Stogov | 2006-07-11 | 1 | -58/+58 |
| | | |||||
| * | Fixed bug #37862 (Integer pointer comparison to numeric value) | Dmitry Stogov | 2006-06-26 | 1 | -1/+1 |
| | | |||||
| * | Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and ↵ | Dmitry Stogov | 2006-04-19 | 1 | -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 Stogov | 2006-04-18 | 1 | -5/+10 |
| | | | | | code in multithread WS). (Andrei, Dmitry) | ||||
| * | MFB | Andrei Zmievski | 2006-04-17 | 1 | -5/+5 |
| | | |||||
| * | Fixed several bugs in new "caching WSDL in memory" code | Dmitry Stogov | 2006-04-17 | 1 | -23/+32 |
| | | | | | | Re-enabled disk cache | ||||
| * | ZTS fix | Dmitry Stogov | 2006-04-10 | 1 | -1/+1 |
| | | |||||
| * | MFB | Andrei Zmievski | 2006-04-09 | 1 | -6/+970 |
| | | |||||
| * | initialize variables and reduce the number of warnings | Antony Dovgal | 2006-02-06 | 1 | -1/+1 |
| | | |||||
| * | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | | |||||
| * | Fixed possible SIGSEGV (Rob Richards) | Dmitry Stogov | 2005-12-09 | 1 | -4/+4 |
| | | |||||
| * | Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of ↵ | Dmitry Stogov | 2005-11-28 | 1 | -0/+34 |
| | | | | | soapenc:base64binary fails) | ||||
| * | Fixed bug #35273 (Error in mapping soap - java types) | Dmitry Stogov | 2005-11-18 | 1 | -11/+27 |
| | | |||||
| * | Fixed bug #34950 (Unable to get WSDL through proxy) | Dmitry Stogov | 2005-10-24 | 1 | -0/+6 |
| | | |||||
| * | - Bumber up year | foobar | 2005-08-03 | 1 | -1/+1 |
| | | |||||
| * | Fixed ZTS build | Dmitry Stogov | 2005-08-02 | 1 | -3/+3 |
| | | |||||
| * | "_local_cert" and "_passphrase" properties moved into "_stream_context". | Dmitry Stogov | 2005-07-20 | 1 | -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 files | Dmitry Stogov | 2005-07-08 | 1 | -33/+58 |
| | | |||||
| * | Fixed bug #32941 (Sending structured SOAP fault kills a php) | Dmitry Stogov | 2005-06-01 | 1 | -14/+19 |
| | | |||||
| * | Fixed WSDL cache bug | Dmitry Stogov | 2005-04-29 | 1 | -3/+3 |
| | | |||||
| * | Support for element's form and schema's elementFormDefault attributes ↵ | Dmitry Stogov | 2005-04-20 | 1 | -1/+3 |
| | | | | | (qualified/unqualified) | ||||
| * | Fixed wrong SOAP headers encoding/decoding. | Dmitry Stogov | 2005-03-28 | 1 | -1/+5 |
| | | |||||
| * | Support for <soap:body> "parts" attribute | Dmitry Stogov | 2005-03-21 | 1 | -8/+38 |
| | | |||||
| * | Revert bad fix | foobar | 2005-03-17 | 1 | -1/+1 |
| | | |||||
| * | Fix Jani breakage | Rasmus Lerdorf | 2005-03-16 | 1 | -1/+1 |
| | | |||||
| * | Fixed SIGSEGV when restoring WSDL without functions from cache | Dmitry Stogov | 2005-01-31 | 1 | -1/+1 |
| | | |||||
| * | Fixed bug #29211 (SoapClient doesn't request wsdl through proxy). (Rob) | Dmitry Stogov | 2004-11-09 | 1 | -8/+42 |
| | | |||||
| * | Fix TSRM build | Marcus Boerger | 2004-09-26 | 1 | -1/+0 |
| | | |||||
| * | Fixed bug #30182 (SOAP module processing WSDL file dumps core). | Dmitry Stogov | 2004-09-22 | 1 | -2/+3 |
| | | |||||
| * | Fixed bug #29839 (incorrect convert (xml:lang to lang)) | Dmitry Stogov | 2004-08-26 | 1 | -30/+0 |
| | | |||||
| * | Fixed bug #29839 (incorrect convert (xml:lang to lang)) | Dmitry Stogov | 2004-08-26 | 1 | -29/+65 |
| | | |||||
| * | Fixed bugs #29109 and #29236. (WSDL cache failure) | Dmitry Stogov | 2004-07-19 | 1 | -20/+16 |
| | | |||||
| * | Eliminate alloca() calls where they can be affected by the users. | Ilia Alshanetsky | 2004-07-05 | 1 | -8/+8 |
| | | |||||
| * | php_error() -> php_error_docref() (Marcus, Dmitry) | Dmitry Stogov | 2004-05-05 | 1 | -51/+51 |
| | | |||||
| * | Fixed bug #27742 (WDSL SOAP Parsing Schema bug) | Dmitry Stogov | 2004-04-02 | 1 | -1/+1 |
| | | |||||
| * | Some small improvments, support for new style constructors, support for ↵ | Dmitry Stogov | 2004-04-01 | 1 | -16/+16 |
| | | | | | exceptions other then SoapFault | ||||
| * | WSDL support for <soap:headerfault> was implemented | Dmitry Stogov | 2004-02-24 | 1 | -81/+164 |
| | | |||||
| * | Don't try to use <input> name instead of <opeartion> name for encoding RPC call | Dmitry Stogov | 2004-02-19 | 1 | -1/+7 |
| | | |||||
| * | WSDL caching bugs were fixed | Dmitry Stogov | 2004-02-19 | 1 | -9/+9 |
| | | |||||
| * | Support for SOAP Fault encoding according to WSDL <fault> and <soap:fault> | Dmitry Stogov | 2004-02-19 | 1 | -41/+208 |
| | | |||||
| * | support for XMLSchema <element> nillable attribute | Dmitry Stogov | 2004-02-17 | 1 | -9/+7 |
| | | |||||
| * | fix: Using proper namespace for <soap:header> if it is not specified. | Dmitry Stogov | 2004-02-17 | 1 | -14/+17 |
| | | |||||
| * | BUGFIX: incorrect restoring of negative integers from WSDL cache | Dmitry Stogov | 2004-02-16 | 1 | -1/+1 |
| | | |||||
