From 58761840e86eb6f0230e5b8bc33e89a8433d6969 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Fri, 28 Sep 2001 21:31:39 +0000 Subject: [PATCH] add license info from original --- phpgwapi/inc/class.soapclient.inc.php | 32 +++++++++++++++++++++++++ phpgwapi/inc/class.soapmsg.inc.php | 32 +++++++++++++++++++++++++ phpgwapi/inc/class.soapval.inc.php | 34 ++++++++++++++++++++++++++- 3 files changed, 97 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.soapclient.inc.php b/phpgwapi/inc/class.soapclient.inc.php index c07fddeeb3..07434121a5 100644 --- a/phpgwapi/inc/class.soapclient.inc.php +++ b/phpgwapi/inc/class.soapclient.inc.php @@ -1,4 +1,36 @@ + +*/ + + /* changelog: + 2001-07-04 + - abstract type system to support either 1999 or 2001 schema (arg, typing still needs much + solidification.) + - implemented proxy support, based on sample code from miles lott + - much general cleanup of code & cleaned out what was left of original xml-rpc/gigaideas code + - implemented a transport argument into send() that allows you to specify different transports + (assuming you have implemented the function, and added it to the conditional statement in send() + - abstracted the determination of charset in Content-type header + 2001-07-5 + - fixed more weird type/namespace issues + */ + + // $path can be a complete endpoint url, with the other parameters left blank: + // $soap_client = new soap_client("http://path/to/soap/server"); + /* soapx4 high level class usage: diff --git a/phpgwapi/inc/class.soapmsg.inc.php b/phpgwapi/inc/class.soapmsg.inc.php index 570ac59099..e38c0323cb 100644 --- a/phpgwapi/inc/class.soapmsg.inc.php +++ b/phpgwapi/inc/class.soapmsg.inc.php @@ -1,4 +1,36 @@ + +*/ + + /* changelog: + 2001-07-04 + - abstract type system to support either 1999 or 2001 schema (arg, typing still needs much + solidification.) + - implemented proxy support, based on sample code from miles lott + - much general cleanup of code & cleaned out what was left of original xml-rpc/gigaideas code + - implemented a transport argument into send() that allows you to specify different transports + (assuming you have implemented the function, and added it to the conditional statement in send() + - abstracted the determination of charset in Content-type header + 2001-07-5 + - fixed more weird type/namespace issues + */ + + // $path can be a complete endpoint url, with the other parameters left blank: + // $soap_client = new soap_client("http://path/to/soap/server"); + /* $Id$ */ // soap message class diff --git a/phpgwapi/inc/class.soapval.inc.php b/phpgwapi/inc/class.soapval.inc.php index 645b8bd7c6..b913c3a31a 100644 --- a/phpgwapi/inc/class.soapval.inc.php +++ b/phpgwapi/inc/class.soapval.inc.php @@ -1,4 +1,36 @@ + +*/ + + /* changelog: + 2001-07-04 + - abstract type system to support either 1999 or 2001 schema (arg, typing still needs much + solidification.) + - implemented proxy support, based on sample code from miles lott + - much general cleanup of code & cleaned out what was left of original xml-rpc/gigaideas code + - implemented a transport argument into send() that allows you to specify different transports + (assuming you have implemented the function, and added it to the conditional statement in send() + - abstracted the determination of charset in Content-type header + 2001-07-5 + - fixed more weird type/namespace issues + */ + + // $path can be a complete endpoint url, with the other parameters left blank: + // $soap_client = new soap_client("http://path/to/soap/server"); + /* $Id$ */ // soap value object @@ -49,7 +81,7 @@ $this->type_code = 0; $this->type_prefix = false; $this->array_type = ''; - $this->debug_flag = True; + $this->debug_flag = False; $this->debug_str = ''; $this->debug("Entering soapval - name: '$name' type: '$type'");