1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<?php
/**
* Entry point for SOAP web service
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package webtrees
* @subpackage Charts
* @version $Id$
*/
define('WT_SCRIPT_NAME', 'genservice.php');
require './includes/session.php';
/**
* we have to manually pull the SID from the SOAP request
* in order to set the correct session during initialization.
*/
//Only include and set the session if it's not a wsdl request
if (!isset($_SERVER['QUERY_STRING']) || strstr($_SERVER['QUERY_STRING'],'wsdl')===false)
{
if (isset($HTTP_RAW_POST_DATA)) {
//-- set the session id
// <ns4:SID>6ca1b44936bf4zb7202e6bd8ce4bkcbd</ns4:SID>
$ct = preg_match("~<\w*:SID>(.*)</\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>(.*)</\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();
|