summaryrefslogtreecommitdiff
path: root/ext/soap/php_encoding.c
Commit message (Collapse)AuthorAgeFilesLines
* Support for <![CDATA[ ]]> for string/hexbinary/base64binary dataDmitry Stogov2004-04-231-0/+6
|
* Support for multiref dataDmitry Stogov2004-04-211-17/+23
|
* Fixed bug #27681 (soap extension fails without HAVE_TM_GMTOFF).Dmitry Stogov2004-04-151-3/+3
|
* Some small improvments, support for new style constructors, support for ↵Dmitry Stogov2004-04-011-6/+16
| | | | exceptions other then SoapFault
* s/emalloc/safe_emalloc/ where appropriate.Ilia Alshanetsky2004-03-181-6/+6
|
* win32 specific fixesDmitry Stogov2004-02-271-1/+1
|
* fix: XMLSchema <choice> support was improved to support elements with ↵Dmitry Stogov2004-02-251-3/+7
| | | | minOccurs=0
* XML Schema support was improved: support for <element> default, fixed and ↵Dmitry Stogov2004-02-241-2/+46
| | | | nillable
* Passing arguments to "anyType" cause passing type information in literal ↵Dmitry Stogov2004-02-191-49/+79
| | | | encoding. Receiver gets sach parameters as SoapVar objects.
* Using element namesapces with literal encoding.Dmitry Stogov2004-02-171-2/+14
|
* support for XMLSchema <element> nillable attributeDmitry Stogov2004-02-171-4/+38
|
* Encoding of ommited tail parameters as NULLsDmitry Stogov2004-02-171-0/+9
|
* specal case of array encoding. If object has only one inner element and this ↵Dmitry Stogov2004-02-161-1/+47
| | | | element has max_occurs > 1, then array can be passed directly.
* fix: prevent of possible crashDmitry Stogov2004-02-161-2/+6
|
* Source cleanupDmitry Stogov2004-02-131-115/+58
|
* Old in-memory WSDL cache was removed (it was already switched off by #ifdef)Dmitry Stogov2004-02-131-15/+0
|
* BUGFIXDmitry Stogov2004-02-131-0/+2
|
* Now SoapClient uses excptions as default method for error reportingDmitry Stogov2004-02-111-16/+23
|
* WSDL caching was implementedDmitry Stogov2004-02-101-3/+3
|
* WSDL cache was disabled by default (see WSDL_CACHE macro)Dmitry Stogov2004-02-061-3/+18
| | | | | WSDL related memory leaks were fixed
* Free XML documents after WSDL parsing (they no longer need).Dmitry Stogov2004-02-061-70/+36
|
* PHP5 and WIN32 support was improvedDmitry Stogov2004-02-061-1/+5
|
* WSDL parsing speedup. Source cleanup.Dmitry Stogov2004-02-051-12/+4
|
* SOAP Headers was implemented (near complete)Dmitry Stogov2004-02-041-7/+8
|
* Initial support for client-part SOAP headers (very incomlete)Dmitry Stogov2004-02-031-6/+8
|
* TSRM fixesMarcus Boerger2004-02-021-1/+2
|
* fix: proper handling of SOAP 1.1 href and unresolved attributes referencesDmitry Stogov2004-02-021-1/+8
|
* SOAP 1.2 specification conformity was improvedDmitry Stogov2004-01-301-12/+13
|
* fix: "Authors" correctedDmitry Stogov2004-01-291-1/+3
|
* - Add our standard headerDerick Rethans2004-01-291-0/+19
|
* Support for nonWSDL mode was improved (SoapVal,SoapVar,SOAPAction...)Dmitry Stogov2004-01-291-51/+87
|
* Error reoprting improved by prefixDmitry Stogov2004-01-281-60/+75
| | | | | | New 'HTTP' fault code Source cleanup
* Add namespaces to <Envelope> (not ot subnodes)Dmitry Stogov2004-01-281-184/+181
|
* XML Schema support was improvedDmitry Stogov2004-01-271-20/+72
| | | | | | support for <attribite> default and fixed values support for encoding of list elements
* fixDmitry Stogov2004-01-261-1/+1
|
* fix: memory leaksDmitry Stogov2004-01-261-9/+2
|
* XML Schema support was improvedDmitry Stogov2004-01-261-24/+36
| | | | | | | support for unsignedLong standard type was fixed restrictions checking was disabled support for standard list types (IDREFS, IDS, NOTATIONS)
* XML Schema support (decoding of xsi:nil with attributes)Dmitry Stogov2004-01-261-25/+269
| | | | | Source Cleanup
* TSRM fixMarcus Boerger2004-01-241-4/+4
|
* XML Schema support was improvedDmitry Stogov2004-01-231-161/+359
| | | | | | | support for type extension support for attribute encoding/decoding support for SOAP 1.2 array encoding/decoding
* XML Schema support was improvedDmitry Stogov2004-01-231-119/+162
| | | | | suport for type extension
* XML Schema support was improvedDmitry Stogov2004-01-221-34/+190
| | | | | | | | | | support for content model (<sequence>,<all>,<choice>) support for top-level <group> support for <group> 'ref' attribute support for content model encoding/decoding (incomplete) support for attribute encoding/decoding (incomplete) support for <attribute> with inline anonymous <simpleType>
* Fix TSRMMarcus Boerger2004-01-211-0/+1
|
* XML Schema supportDmitry Stogov2004-01-201-13/+29
| | | | | | | - support for <element> 'ref' attibute was implemented - support for inline types - support for <list> and <union> (incompleate)
* SOAP 1.2 support was improvedDmitry Stogov2004-01-151-33/+69
|
* Support for SOAP 1.2 array encoding/decoding was implementedDmitry Stogov2004-01-151-91/+63
|
* SOAP 1.2 support was improvedDmitry Stogov2004-01-151-80/+189
|
* SOAP 1.2 support was improvedDmitry Stogov2004-01-151-0/+1
|
* WSDL: restrictions support (whiteSpace, minLength, maxLength, length)Dmitry Stogov2004-01-141-8/+13
|
* array/object encodingDmitry Stogov2004-01-141-59/+247
|