6ca1b44936bf4zb7202e6bd8ce4bkcbd $ct = preg_match("~<\w*:SID>(.*)~", $HTTP_RAW_POST_DATA, $match); if ($ct>0) Zend_Session::setId(trim($match[1])); //-- set the gedcom id $ct = preg_match("~<\w*:gedcom_id>(.*)~", $HTTP_RAW_POST_DATA, $match); if ($ct>0) $_REQUEST['ged'] = trim($match[1]); require_once WT_ROOT.'includes/functions/functions_edit.php'; } } // Our SOAP library uses lots of deprecated features - ignore them if (version_compare(PHP_VERSION, '5.3')>0) { error_reporting(error_reporting() & ~E_DEPRECATED & ~E_STRICT); } else { error_reporting(error_reporting() & ~E_STRICT); } require_once './webservice/wtServiceLogic.class.php'; $genealogyServer=new wtServiceLogic(); $genealogyServer->process();