History log of /php-src/ext/soap/soap.c (Results 401 – 425 of 605)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: php-5.2.2RC2, RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1
# 36c6ad91 02-Apr-2007 Dmitry Stogov

Fixed bug #37013 (server hangs when returning circular object references)

Revision tags: RELEASE_1_0_1
# 3ee54ce9 20-Mar-2007 Dmitry Stogov

Added ability to encode arrays with "SOAP-ENC:Array" type instead of WSDL type. To activate the ability use "feature"=>SOAP_USE_XSI_ARRAY_TYPE option in SoapClient/SoapServer constructors.

Revision tags: php-4.4.6
# cc04404b 27-Feb-2007 Ilia Alshanetsky

snprintf() -> slprintf()

# Part 1

# 50ea2676 24-Feb-2007 Marcus Boerger

- Avoid sprintf, even when checked copy'n'paste or changes lead to errors

Revision tags: php-4.4.6RC1, php-4.4.5, php-5.2.1, RELEASE_1_0_0RC1, php-4.4.5RC2, php-5.2.1RC4, php-5.2.1RC3
# 84a827e0 18-Jan-2007 Antony Dovgal

MFH

Revision tags: php-4.4.5RC1, php-5.2.1RC2
# 4223aa4d 01-Jan-2007 Sebastian Bergmann

MFH: Bump year.

Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6, php-5.2.0RC5
# 557838ef 03-Oct-2006 Ilia Alshanetsky

Last set of zend_hash_init() optimizations

# f5375991 28-Sep-2006 Hannes Magnusson

MFH: fix arginfo&proto

# fa6c04c7 25-Sep-2006 Dmitry Stogov

Removed warning about unreferenced local variable

# f7f180f9 22-Sep-2006 Dmitry Stogov

Prevent access to dead zval

# f5d7dac3 20-Sep-2006 Dmitry Stogov

Added ability to make SOAP call userspace PHP<->XML converters

# ed260321 15-Sep-2006 Dmitry Stogov

Fixed memory leak

Revision tags: php-5.2.0RC4
# 8166284c 04-Sep-2006 Dmitry Stogov

Fixed bug #38700 (SoapClient::__getTypes never returns)

Revision tags: php-5.2.0RC3
# 92f1b46f 24-Aug-2006 Dmitry Stogov

Added SoapServer::setObject() method (it is a simplified version of SoapServer::setClass() method).

Revision tags: php-5.1.6, php-5.2.0RC2, php-5.1.5, php-4.4.4, php-4.4.4RC1, php-5.1.5RC1
# 1354aa9e 31-Jul-2006 Dmitry Stogov

Prevented possible double call in case of fault

Revision tags: php-4.4.3
# 53025ca3 31-Jul-2006 Dmitry Stogov

Fixed crash in SoapClient::__setSoapHeaders()

Revision tags: php-5.2.0RC1
# a602a3ee 11-Jul-2006 Dmitry Stogov

Nuke signed/unsigned compiler warnings

# ee1dc90d 11-Jul-2006 Dmitry Stogov

Nuke signed/unsigned compiler warnings

# 795a482a 10-Jul-2006 Dmitry Stogov

Fixed bug #38005 (SoapFault faultstring doesn't follow encoding rules)

Revision tags: php-4.4.3RC2, BEFORE_NEW_OUTPUT_API
# 10371b03 26-May-2006 Dmitry Stogov

Fixed bug #37523 (namespaces added too late, leads to missing xsi:type attributes. incompatibility with libxml2-2.6.24)

# 93851ebf 25-May-2006 Dmitry Stogov

Fixed bug #37278 (SOAP not respecting uri in __soapCall)

Revision tags: php-4.4.3RC1
# 77c1b56c 10-May-2006 Marcus Boerger

- Update after api changes

Revision tags: php-5.1.4
# a34755e9 03-May-2006 Dmitry Stogov

MFH

Revision tags: RELEASE_1_0_3, php-5.1.3, php-5.1.2, RELEASE_1_3, php-5.1.3RC3
# 68906dbe 19-Apr-2006 Dmitry Stogov

Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and LIMIT for memory cache.
Memory cache is disblead by fefault because it is experemental and isn't tested enough. It can

Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and 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/SoapServer 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 wsdl 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.

show more ...

# 874a2210 14-Apr-2006 Dmitry Stogov

Fixed calling header functions through __call()

1...<<11121314151617181920>>...25