[pLog-svn] r3990 - plog/branches/lifetype-1.1.1/class/net/xmlrpc

oscar at devel.lifetype.net oscar at devel.lifetype.net
Mon Sep 18 22:04:11 GMT 2006


Author: oscar
Date: 2006-09-18 22:04:10 +0000 (Mon, 18 Sep 2006)
New Revision: 3990

Modified:
   plog/branches/lifetype-1.1.1/class/net/xmlrpc/IXR_Library.lib.php
Log:
one small addition to the class so that the raw XML message as received by the client can be accessed via a class attribute. This makes our unit tests a lot easier...


Modified: plog/branches/lifetype-1.1.1/class/net/xmlrpc/IXR_Library.lib.php
===================================================================
--- plog/branches/lifetype-1.1.1/class/net/xmlrpc/IXR_Library.lib.php	2006-09-18 21:14:06 UTC (rev 3989)
+++ plog/branches/lifetype-1.1.1/class/net/xmlrpc/IXR_Library.lib.php	2006-09-18 22:04:10 UTC (rev 3990)
@@ -123,6 +123,7 @@
     var $faultString;
     var $methodName;
     var $params;
+	var $rawmessage;
     // Current variable stacks
     var $_arraystructs = array();   // The stack used to keep track of the current array/struct
     var $_arraystructstypes = array(); // Stack keeping track of if things are structs or array
@@ -135,6 +136,7 @@
     var $_parser;
     function IXR_Message ($message) {
         $this->message = $message;
+		$this->rawmessage = $message;
     }
     function parse() {
         // first remove the XML declaration



More information about the pLog-svn mailing list