-
Martin Haase authored
git-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@1505 7c539038-3410-0410-b1ec-0f2a7bf1c452
Martin Haase authoredgit-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@1505 7c539038-3410-0410-b1ec-0f2a7bf1c452
tgreview.php 766 B
<?php
// #######################################################
// Author: Markus Widmer
// Creation date: 18.07.2007
// Modification date: 13.11.2007
// Version: 1.1.0
// #######################################################
require_once( "soapTypes.inc.php" );
require_once( "../rbac/RBAC.class.php" );
require_once( "TgReview.class.php" );
// Dont be so verbose with messages and notices.
error_reporting( E_ERROR | E_USER_ERROR );
// #############################################################
// Starting SOAP-Server
// #############################################################
$server = new SoapServer( "./wsdl/tgreview.wsdl" );
$server->setClass( "TgReview", "../conf/rbacSoap.conf", "../conf/system.conf", "../rbac/" );
$server->handle();
?>