summaryrefslogtreecommitdiff
path: root/ext/soap/php_soap.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers to 2017Sammy Kaye Powers2017-01-041-1/+1
|
* Move semicolon into TSRMLS_CACHE_EXTERN/DEFINENikita Popov2016-03-031-1/+1
| | | | Also re bug #71575.
* Merge branch 'PHP-5.6' into PHP-7.0Lior Kaplan2016-01-011-1/+1
|\ | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016)
| * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-011-1/+1
| |
| * bump yearXinchen Hui2015-01-151-1/+1
| |
* | switch to the unified globals accessor where appropriateAnatol Belski2015-07-291-6/+2
| |
* | cleanup mod version macros and mod defs, round xAnatol Belski2015-03-231-3/+1
| |
* | made ZEND_TSRMLS_CACHE_* macros look like function callsAnatol Belski2015-02-161-1/+1
| | | | | | | | which also comply with the current semantics for such macros
* | bump yearXinchen Hui2015-01-151-1/+1
| |
* | first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into native-tlsAnatol Belski2014-11-261-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (102 commits) fix dir separator in test fix TS build fix TS build Better fix for bug #68446 Revert "Merge remote-tracking branch 'origin/PHP-5.6'" Revert NEWS and set test to XFAIL Revert "Fix bug #68446 (bug with constant defaults and type hints)" Improved zend_hash_clean() and added new optimized zend_symtable_clean() Use inline version of zval_ptr_dtor() Added new optimized zend_array_destroy() function Moved i_zval_ptr_dtor() from zend_execute.h to zend_variables.h fix REGISTER_NS_*_CONSTANT macros Removed useless assert. EG(uninitialized_zval) can't be refcounted. Use specialized destructors when types of zvals are known. move tests into proper place Improved assignment to object property Reuse zend_assign_to_variable() in zend_std_write_property() cleanup comments from svn/cvs era fix dir separator in test fork test for windows ...
| * | typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-231-1/+1
| | |
* | | ext/libxml, ext/xml and ext/soap use static tsrmls pointerAnatol Belski2014-10-171-1/+4
|/ /
* | Move smart_str implementation into Zend/Nikita Popov2014-09-211-1/+1
| | | | | | | | | | | | | | | | So we can use it there as well... For now I've retained the zend_smart_str_public.h header, though it would probably be better to just move that one struct into zend_types.h.
* | s/PHP 5/PHP 7/Johannes Schlüter2014-09-191-1/+1
| |
* | master renames phase 1Anatol Belski2014-08-251-2/+2
| |
* | ported ext/soapAnatol Belski2014-08-191-2/+2
| |
* | Fixed SoapFault handlingDmitry Stogov2014-05-151-1/+1
| |
* | Fixed SOAP error handlingDmitry Stogov2014-05-151-1/+1
| |
* | ext/soap support for phpng (incomplete - just compilable)Dmitry Stogov2014-05-151-4/+4
|/
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Added SoapClient constructor option 'ssl_method' to specify ssl methodDmitry Stogov2013-04-301-0/+7
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed broken soap.wsdl_cache_enabledDmitry Stogov2008-01-091-1/+3
|
* remove unused PHP_EXTNAME_API macros.Nuno Lopes2008-01-031-5/+0
| | | | | #in preparation for the gcc 4 visibility patch
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #42214 (SoapServer sends clients internal PHP errors)Dmitry Stogov2007-09-051-0/+1
|
* Fixed bug #37013 (server hangs when returning circular object references)Dmitry Stogov2007-04-021-0/+2
|
* Added ability to encode arrays with "SOAP-ENC:Array" type instead of WSDL ↵Dmitry Stogov2007-03-201-1/+2
| | | | type. To activate the ability use "feature"=>SOAP_USE_XSI_ARRAY_TYPE option in SoapClient/SoapServer constructors.
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Added ability to make SOAP call userspace PHP<->XML convertersDmitry Stogov2006-09-201-23/+4
|
* Added SoapServer::setObject() method (it is a simplified version of ↵Dmitry Stogov2006-08-241-0/+3
| | | | SoapServer::setClass() method).
* Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and ↵Dmitry Stogov2006-04-191-1/+8
| | | | | | | | | | 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.
* Speed up SoapClient/SoapServer constructors by caching WSDL structuresAndrei Zmievski2006-04-091-0/+1
| | | | | | in memory. All WSDL files will be cached, unless turned off via an option to the constructor.
* Fixed bug #36721 (The SoapServer is not able to send a header that it didn't ↵Dmitry Stogov2006-03-211-0/+3
| | | | receive)
* Fixed bug #36083 (SoapClient waits for responses on one-way operations)Dmitry Stogov2006-02-071-0/+1
|
* Bug #36226 Inconsistent handling when passing potential arraysDmitry Stogov2006-02-021-0/+4
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* ifdef'ed the code but not the includesBrian France2005-06-161-0/+2
|
* Fixed bug #31747 (SOAP Digest Authentication doesn't work with "HTTP/1.1 100 ↵Dmitry Stogov2005-02-021-0/+3
| | | | Continue" response)
* Class mapping was implemented (Bug #29385 Soapserver always uses std class).Dmitry Stogov2004-11-161-0/+2
|
* Fixed bug #28969 (Wrong data encoding of special characters).Dmitry Stogov2004-08-101-0/+2
|
* php_error() -> php_error_docref() (Marcus, Dmitry)Dmitry Stogov2004-05-051-0/+12
|
* SoapClint support for multiple hosts (through WSDL) with cookies.Dmitry Stogov2004-04-021-0/+2
|
* HTTP compression support (gzip and deflate)Dmitry Stogov2004-02-251-0/+4
|