diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-04-20 08:30:43 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-04-20 08:30:43 +0000 |
commit | 7288226dbae36a37b8f754defda826e6e1ad577e (patch) | |
tree | 9ff1f428bfe74c4e758430353fa0b15c73143082 /ext/soap/php_sdl.c | |
parent | c4a7ee45adcd4dec77b6d533e99cc1f3aadd1863 (diff) | |
download | php-git-7288226dbae36a37b8f754defda826e6e1ad577e.tar.gz |
Support for element's form and schema's elementFormDefault attributes (qualified/unqualified)
Diffstat (limited to 'ext/soap/php_sdl.c')
-rw-r--r-- | ext/soap/php_sdl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 70dd4705a1..fa736a4192 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -1065,7 +1065,7 @@ static sdlPtr load_wsdl(zval *this_ptr, char *struri TSRMLS_DC) return ctx.sdl; } -#define WSDL_CACHE_VERSION 0x0c +#define WSDL_CACHE_VERSION 0x0d #define WSDL_CACHE_GET(ret,type,buf) memcpy(&ret,*buf,sizeof(type)); *buf += sizeof(type); #define WSDL_CACHE_GET_INT(ret,buf) ret = ((unsigned char)(*buf)[0])|((unsigned char)(*buf)[1]<<8)|((unsigned char)(*buf)[2]<<16)|((int)(*buf)[3]<<24); *buf += 4; @@ -1214,6 +1214,7 @@ static void sdl_deserialize_type(sdlTypePtr type, sdlTypePtr *types, encodePtr * type->fixed = sdl_deserialize_string(in); type->ref = sdl_deserialize_string(in); WSDL_CACHE_GET_1(type->nillable, char, in); + WSDL_CACHE_GET_1(type->form, sdlForm, in); WSDL_CACHE_GET_INT(i, in); type->encode = encoders[i]; @@ -1788,6 +1789,7 @@ static void sdl_serialize_type(sdlTypePtr type, HashTable *tmp_encoders, HashTab sdl_serialize_string(type->fixed, out); sdl_serialize_string(type->ref, out); WSDL_CACHE_PUT_1(type->nillable, out); + WSDL_CACHE_PUT_1(type->form, out); sdl_serialize_encoder_ref(type->encode, tmp_encoders, out); if (type->restrictions) { |