Example #1
0
<?php

$common_client = new SoapClient('http://shunt.cro.enalean.com/soap/codendi.wsdl.php?wsdl');
// Disciplus is a restricted user
$session = $common_client->login('manuel', 'manuel')->session_hash;
$svn_client = new SoapClient('http://shunt.cro.enalean.com/soap/svn/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
var_dump($svn_client->getSvnPath($session, 101, '/tags'));
$common_client->logout($session);
Example #2
0
<?php

/**
 * Copyright (c) Enalean, 2012. All Rights Reserved.
 *
 * Tuleap 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.
 *
 * Tuleap 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 Tuleap; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
if ($argc != 3) {
    die("Usage: " . $argv[0] . " project_id svn_path\n");
}
$server_url = isset($_SERVER['TULEAP_SERVER']) ? $_SERVER['TULEAP_SERVER'] : 'http://sonde.cro.enalean.com';
$login = isset($_SERVER['TULEAP_USER']) ? $_SERVER['TULEAP_USER'] : '******';
$password = isset($_SERVER['TULEAP_PASSWORD']) ? $_SERVER['TULEAP_PASSWORD'] : '******';
$soapLogin = new SoapClient($server_url . '/soap/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
// Establish connection to the server
$requesterSessionHash = $soapLogin->login($login, $password)->session_hash;
$svn_client = new SoapClient($server_url . '/soap/svn/?wsdl', array('cache_wsdl' => WSDL_CACHE_NONE));
var_dump($svn_client->getSvnPath($requesterSessionHash, $argv[1], $argv[2]));
$soapLogin->logout($requesterSessionHash);