summaryrefslogtreecommitdiff
path: root/ext/soap/php_schema.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSLSVN Migration2006-10-151-2521/+0
|
* Last set of zend_hash_init() optimizationsIlia Alshanetsky2006-10-031-2/+2
|
* Nuke signed/unsigned compiler warningsDmitry Stogov2006-07-111-193/+123
|
* MFH: fix #37807 (segmentation fault during SOAP schema import)Antony Dovgal2006-06-191-1/+1
|
* Speed up SoapClient/SoapServer constructors by caching WSDL structuresAndrei Zmievski2006-04-091-0/+127
| | | | | | in memory. All WSDL files will be cached, unless turned off via an option to the constructor.
* Fixed Bug #36614 (Segfault when using Soap)Dmitry Stogov2006-03-151-1/+1
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* Fixed possible SIGSEGV (Rob Richards)Dmitry Stogov2005-12-091-1/+5
|
* Fixed bug #35142 (SOAP Client/Server Complex Object Support)Dmitry Stogov2005-11-081-2/+18
|
* Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception)Dmitry Stogov2005-09-281-4/+0
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Fixed ZTS buildDmitry Stogov2005-08-021-7/+7
|
* Fixed bug #32941 (Sending structured SOAP fault kills a php)Dmitry Stogov2005-06-011-11/+1
|
* Support for element's form and schema's elementFormDefault attributes ↵Dmitry Stogov2005-04-201-6/+40
| | | | (qualified/unqualified)
* Fix qualified names for attributes according to attributeFormDefault.George Schlossnagle2005-04-031-1/+19
| | | | | Add SOAP Interop tests from Dmitry.
* Fixed bug #30106 (SOAP cannot not parse 'ref' element. Causes Uncaught ↵Dmitry Stogov2005-03-221-2/+41
| | | | SoapFault exception)
* doc should not be freed here, as it is used later in the code path.George Schlossnagle2005-03-181-1/+0
|
* Fix TSRM buildMarcus Boerger2004-09-261-1/+0
|
* Fixed bug #29839 (incorrect convert (xml:lang to lang))Dmitry Stogov2004-08-261-0/+9
|
* php_error() -> php_error_docref() (Marcus, Dmitry)Dmitry Stogov2004-05-051-78/+78
|
* Fixed bug #27742 (WDSL SOAP Parsing Schema bug)Dmitry Stogov2004-04-021-1/+5
|
* Fixed bug #27722 (Segfault on schema without targetNamespace).Dmitry Stogov2004-04-011-97/+101
|
* fix: anotaion -> anotationDmitry Stogov2004-02-241-8/+8
|
* XML Schema support was improved: support for <element> default, fixed and ↵Dmitry Stogov2004-02-241-1/+7
| | | | nillable
* support for XMLSchema <element> nillable attributeDmitry Stogov2004-02-171-0/+3
|
* Source cleanupDmitry Stogov2004-02-131-16/+12
|
* Old in-memory WSDL cache was removed (it was already switched off by #ifdef)Dmitry Stogov2004-02-131-151/+151
|
* WSDL caching was implementedDmitry Stogov2004-02-101-17/+10
|
* optimizationDmitry Stogov2004-02-061-6/+7
|
* WSDL cache was disabled by default (see WSDL_CACHE macro)Dmitry Stogov2004-02-061-150/+153
| | | | | WSDL related memory leaks were fixed
* Free XML documents after WSDL parsing (they no longer need).Dmitry Stogov2004-02-061-104/+141
|
* WSDL parsing speedup. Source cleanup.Dmitry Stogov2004-02-051-31/+29
|
* fix: proper handling of SOAP 1.1 href and unresolved attributes referencesDmitry Stogov2004-02-021-0/+7
|
* SOAP 1.2 specification conformity was improvedDmitry Stogov2004-01-301-43/+1
|
* fix: "Authors" correctedDmitry Stogov2004-01-291-1/+3
|
* - Add our standard headerDerick Rethans2004-01-291-0/+19
|
* Error reoprting improved by prefixDmitry Stogov2004-01-281-85/+78
| | | | | | New 'HTTP' fault code Source cleanup
* Add namespaces to <Envelope> (not ot subnodes)Dmitry Stogov2004-01-281-2/+3
|
* Support for relative path in WSDL and XML Schema <import>Dmitry Stogov2004-01-271-12/+45
|
* Allow <element>s with same namesDmitry Stogov2004-01-271-1/+5
|
* XML Schema support (decoding of xsi:nil with attributes)Dmitry Stogov2004-01-261-21/+197
| | | | | Source Cleanup
* disabling import if file was already loadedDmitry Stogov2004-01-231-50/+49
|
* XML Schema support was improvedDmitry Stogov2004-01-231-4/+4
| | | | | | | 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-8/+30
| | | | | suport for type extension
* XML Schema support was improvedDmitry Stogov2004-01-221-117/+398
| | | | | | | | | | 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>
* Source cleanupDmitry Stogov2004-01-211-23/+10
|
* XML Schema support was improvedDmitry Stogov2004-01-211-402/+610
| | | | | | | | | | xml tree cleanup (save memory and parsing time) support for <inclide> and <import> support for top-level <attribute> support for <attribute> 'ref' attribute support for top-level <attributeGroup> support for <attributeGroup> 'ref' attribute
* XML Schema supportDmitry Stogov2004-01-201-81/+331
| | | | | | | - support for <element> 'ref' attibute was implemented - support for inline types - support for <list> and <union> (incompleate)
* XML Schema support was impovedDmitry Stogov2004-01-191-313/+623
|
* XML Scheam supportDmitry Stogov2004-01-191-15/+16
|