2004-01-29 17:27:06 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-29 19:51:11 +08:00
|
|
|
| Authors: Brad Lafountain <rodif_bl@yahoo.com> |
|
|
|
|
| Shane Caraveo <shane@caraveo.com> |
|
|
|
|
| Dmitry Stogov <dmitry@zend.com> |
|
2004-01-29 17:27:06 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
|
2002-07-08 07:03:43 +08:00
|
|
|
#ifndef PHP_SOAP_H
|
|
|
|
#define PHP_SOAP_H
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
#include "php_globals.h"
|
|
|
|
#include "ext/standard/info.h"
|
|
|
|
#include "ext/standard/php_standard.h"
|
|
|
|
#include "ext/session/php_session.h"
|
|
|
|
#include "ext/standard/php_smart_str.h"
|
|
|
|
#include "php_ini.h"
|
|
|
|
#include "SAPI.h"
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_PHP_DOMXML
|
|
|
|
# include "ext/domxml/php_domxml.h"
|
|
|
|
#endif
|
|
|
|
|
2003-03-05 22:23:56 +08:00
|
|
|
#ifndef PHP_HAVE_STREAMS
|
|
|
|
# error You lose - must be compiled against PHP 4.3.0 or later
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PHP_WIN32
|
2002-07-08 07:03:43 +08:00
|
|
|
# define TRUE 1
|
|
|
|
# define FALSE 0
|
|
|
|
# define stricmp strcasecmp
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct _encodeType encodeType, *encodeTypePtr;
|
|
|
|
typedef struct _encode encode, *encodePtr;
|
|
|
|
|
|
|
|
typedef struct _sdl sdl, *sdlPtr;
|
|
|
|
typedef struct _sdlRestrictionInt sdlRestrictionInt, *sdlRestrictionIntPtr;
|
|
|
|
typedef struct _sdlRestrictionChar sdlRestrictionChar, *sdlRestrictionCharPtr;
|
|
|
|
typedef struct _sdlRestrictions sdlRestrictions, *sdlRestrictionsPtr;
|
|
|
|
typedef struct _sdlType sdlType, *sdlTypePtr;
|
|
|
|
typedef struct _sdlParam sdlParam, *sdlParamPtr;
|
|
|
|
typedef struct _sdlFunction sdlFunction, *sdlFunctionPtr;
|
|
|
|
typedef struct _sdlAttribute sdlAttribute, *sdlAttributePtr;
|
2002-08-07 11:03:09 +08:00
|
|
|
typedef struct _sdlBinding sdlBinding, *sdlBindingPtr;
|
|
|
|
typedef struct _sdlSoapBinding sdlSoapBinding, *sdlSoapBindingPtr;
|
|
|
|
typedef struct _sdlSoapBindingFunction sdlSoapBindingFunction, *sdlSoapBindingFunctionPtr;
|
|
|
|
typedef struct _sdlSoapBindingFunctionBody sdlSoapBindingFunctionBody, *sdlSoapBindingFunctionBodyPtr;
|
2002-07-08 07:03:43 +08:00
|
|
|
|
|
|
|
typedef struct _soapMapping soapMapping, *soapMappingPtr;
|
|
|
|
typedef struct _soapService soapService, *soapServicePtr;
|
|
|
|
|
|
|
|
#include "php_xml.h"
|
|
|
|
#include "php_encoding.h"
|
|
|
|
#include "php_sdl.h"
|
|
|
|
#include "php_schema.h"
|
|
|
|
#include "php_http.h"
|
|
|
|
#include "php_packet_soap.h"
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _soapMapping {
|
2002-07-08 07:03:43 +08:00
|
|
|
char *ns;
|
|
|
|
char *ctype;
|
|
|
|
int type;
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _map_functions {
|
2002-07-08 07:03:43 +08:00
|
|
|
zval *to_xml_before;
|
|
|
|
zval *to_xml;
|
|
|
|
zval *to_xml_after;
|
|
|
|
zval *to_zval_before;
|
|
|
|
zval *to_zval;
|
|
|
|
zval *to_zval_after;
|
|
|
|
} map_functions;
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _map_class {
|
2002-07-08 07:03:43 +08:00
|
|
|
int type;
|
|
|
|
zend_class_entry *ce;
|
|
|
|
} map_class;
|
|
|
|
};
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _soapService {
|
2002-07-08 07:03:43 +08:00
|
|
|
sdlPtr sdl;
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _soap_functions {
|
2002-07-08 07:03:43 +08:00
|
|
|
HashTable *ft;
|
|
|
|
int functions_all;
|
|
|
|
} soap_functions;
|
|
|
|
|
2004-01-10 02:22:03 +08:00
|
|
|
struct _soap_class {
|
2002-07-08 07:03:43 +08:00
|
|
|
zend_class_entry *ce;
|
|
|
|
zval **argv;
|
|
|
|
int argc;
|
|
|
|
int persistance;
|
|
|
|
} soap_class;
|
|
|
|
|
|
|
|
HashTable *mapping;
|
2004-02-04 00:44:57 +08:00
|
|
|
int version;
|
2004-02-03 00:19:39 +08:00
|
|
|
int type;
|
|
|
|
char *actor;
|
|
|
|
char *uri;
|
2002-07-08 07:03:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define SOAP_CLASS 1
|
|
|
|
#define SOAP_FUNCTIONS 2
|
|
|
|
#define SOAP_FUNCTIONS_ALL 999
|
|
|
|
|
|
|
|
#define SOAP_MAP_FUNCTION 1
|
|
|
|
#define SOAP_MAP_CLASS 2
|
|
|
|
|
|
|
|
#define SOAP_PERSISTENCE_SESSION 1
|
|
|
|
#define SOAP_PERSISTENCE_REQUEST 2
|
|
|
|
|
2004-01-08 23:27:50 +08:00
|
|
|
#define SOAP_1_1 1
|
|
|
|
#define SOAP_1_2 2
|
|
|
|
|
2004-02-04 00:44:57 +08:00
|
|
|
#define SOAP_ACTOR_NEXT 1
|
|
|
|
#define SOAP_ACTOR_NONE 2
|
|
|
|
#define SOAP_ACTOR_UNLIMATERECEIVER 3
|
|
|
|
|
|
|
|
#define SOAP_1_1_ACTOR_NEXT "http://schemas.xmlsoap.org/soap/actor/next"
|
|
|
|
|
|
|
|
#define SOAP_1_2_ACTOR_NEXT "http://www.w3.org/2003/05/soap-envelope/role/next"
|
|
|
|
#define SOAP_1_2_ACTOR_NONE "http://www.w3.org/2003/05/soap-envelope/role/none"
|
|
|
|
#define SOAP_1_2_ACTOR_UNLIMATERECEIVER "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"
|
|
|
|
|
2002-07-08 07:03:43 +08:00
|
|
|
ZEND_BEGIN_MODULE_GLOBALS(soap)
|
2004-02-06 19:56:03 +08:00
|
|
|
HashTable defEncNs; /* mapping of default namespaces to prefixes */
|
|
|
|
HashTable defEnc;
|
|
|
|
HashTable defEncIndex;
|
2002-07-08 07:03:43 +08:00
|
|
|
HashTable *sdls;
|
|
|
|
HashTable *overrides;
|
2004-01-26 17:51:07 +08:00
|
|
|
int cur_uniq_ns;
|
|
|
|
int soap_version;
|
|
|
|
sdlPtr sdl;
|
|
|
|
zend_bool use_soap_error_handler;
|
2004-02-10 21:41:21 +08:00
|
|
|
zend_bool cache_enabled;
|
|
|
|
char* cache_dir;
|
|
|
|
long cache_ttl;
|
2002-07-08 07:03:43 +08:00
|
|
|
ZEND_END_MODULE_GLOBALS(soap)
|
2004-01-13 23:58:01 +08:00
|
|
|
|
2003-03-14 10:08:30 +08:00
|
|
|
#ifdef PHP_WIN32
|
|
|
|
#define PHP_SOAP_API __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define PHP_SOAP_API
|
|
|
|
#endif
|
|
|
|
#ifdef ZTS
|
|
|
|
#include "TSRM.h"
|
|
|
|
#endif
|
2002-07-08 07:03:43 +08:00
|
|
|
|
2004-01-09 22:23:35 +08:00
|
|
|
extern zend_module_entry soap_module_entry;
|
|
|
|
#define soap_module_ptr &soap_module_entry
|
2004-01-13 23:58:01 +08:00
|
|
|
#define phpext_soap_ptr soap_module_ptr
|
2004-01-09 22:23:35 +08:00
|
|
|
|
2004-02-05 17:28:09 +08:00
|
|
|
ZEND_EXTERN_MODULE_GLOBALS(soap)
|
2002-07-08 07:03:43 +08:00
|
|
|
|
|
|
|
#ifdef ZTS
|
|
|
|
# define SOAP_GLOBAL(v) TSRMG(soap_globals_id, zend_soap_globals *, v)
|
|
|
|
#else
|
|
|
|
# define SOAP_GLOBAL(v) (soap_globals.v)
|
|
|
|
#endif
|
|
|
|
|
2004-01-06 00:44:01 +08:00
|
|
|
extern zend_class_entry* soap_var_class_entry;
|
2002-07-08 07:03:43 +08:00
|
|
|
|
2004-01-06 00:44:01 +08:00
|
|
|
zval* add_soap_fault(zval *obj, char *fault_code, char *fault_string, char *fault_actor, zval *fault_detail TSRMLS_DC);
|
2002-07-08 07:03:43 +08:00
|
|
|
|
|
|
|
#endif
|