diff options
author | Dmitry Stogov <dmitry@php.net> | 2004-01-15 10:59:24 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2004-01-15 10:59:24 +0000 |
commit | ef9e73459376b23a268ffaa7f71877cac5851c45 (patch) | |
tree | 0468eb9fb2d5b894925183a76eba5b740f8a4e1c /ext/soap/php_encoding.h | |
parent | 43b0a9e96b6b0e201980efea5077d86699d95a52 (diff) | |
download | php-git-ef9e73459376b23a268ffaa7f71877cac5851c45.tar.gz |
SOAP 1.2 support was improved
Diffstat (limited to 'ext/soap/php_encoding.h')
-rw-r--r-- | ext/soap/php_encoding.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/ext/soap/php_encoding.h b/ext/soap/php_encoding.h index a0eced4517..061cd847d5 100644 --- a/ext/soap/php_encoding.h +++ b/ext/soap/php_encoding.h @@ -5,11 +5,17 @@ #define XSD_1999_TIMEINSTANT 401 #define XSD_1999_TIMEINSTANT_STRING "timeInstant" -#define SOAP_1_1_ENC "http://schemas.xmlsoap.org/soap/encoding/" -#define SOAP_1_1_ENV "http://schemas.xmlsoap.org/soap/envelope/" +#define SOAP_1_1_ENV_NAMESPACE "http://schemas.xmlsoap.org/soap/envelope/" +#define SOAP_1_1_ENV_NS_PREFIX "SOAP-ENV" -#define SOAP_1_2_ENC "http://www.w3.org/2003/05/soap-encoding" -#define SOAP_1_2_ENV "http://www.w3.org/2003/05/soap-envelope" +#define SOAP_1_2_ENV_NAMESPACE "http://www.w3.org/2003/05/soap-envelope" +#define SOAP_1_2_ENV_NS_PREFIX "env" + +#define SOAP_1_1_ENC_NAMESPACE "http://schemas.xmlsoap.org/soap/encoding/" +#define SOAP_1_1_ENC_NS_PREFIX "SOAP-ENC" + +#define SOAP_1_2_ENC_NAMESPACE "http://www.w3.org/2003/05/soap-encoding" +#define SOAP_1_2_ENC_NS_PREFIX "enc" #define SCHEMA_NAMESPACE "http://www.w3.org/2001/XMLSchema" #define XSD_NAMESPACE "http://www.w3.org/2001/XMLSchema" @@ -115,8 +121,6 @@ #define APACHE_MAP 200 #define APACHE_MAP_STRING "Map" -#define SOAP_ENC_NAMESPACE "http://schemas.xmlsoap.org/soap/encoding/" -#define SOAP_ENC_NS_PREFIX "SOAP-ENC" #define SOAP_ENC_ARRAY 300 #define SOAP_ENC_ARRAY_STRING "Array" #define SOAP_ENC_OBJECT 301 |