-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgenservice.php
More file actions
63 lines (57 loc) · 2.02 KB
/
genservice.php
File metadata and controls
63 lines (57 loc) · 2.02 KB
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
<?php
/**
* Entry point for SOAP web service
*
* phpGedView: Genealogy Viewer
* Copyright (C) 2002 to 2005 PGV Development Team
*
* 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 PhpGedView
* @subpackage Charts
* @version $Id$
*/
//needed for $INDEX_DIRECTORY
require_once('config.php');
/**
* we have to manually pull the SID from the SOAP request
* in order to set the correct session during initialization.
*/
$SID = "";
//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) $SID = trim($match[1]);
$MANUAL_SESSION_START = true;
//-- 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('config.php');
//AddToLog("Setting SID to ".$SID." ".$HTTP_RAW_POST_DATA);
require_once("includes/functions_edit.php");
}
}
/**
* load up the service implementation
*/
require_once('webservice/PGVServiceLogic.class.php');
$genealogyServer = new PGVServiceLogic();
//-- process the SOAP request
$server = $genealogyServer->process();
?>