We have a SAML-based federation, we have about four IdPs  and four service 
providers. We are looking into having a tool to manage our federation, 
especially metadata exchange automation. Someone recommende Jagger to me 
and I am busy trying to install it. I amusing this installation guide: 
http://jagger.heanet.ie/jaggerdocadmin/installation.html


In trying to run the doctrine script I am hit with the error below:
PHP Fatal error:  Class 'Doctrine\Common\ClassLoader' not found in 
/opt/rr3/application/libraries/Doctrine.php on line 35


Line 35 is bolded:

<?php
if (!defined('BASEPATH'))
    exit('No direct script access allowed');

use Doctrine\ORM\EntityManager,
    Doctrine\ORM\Configuration;

define('DEBUGGING', FALSE);
/**
 * ResourceRegistry3
 *
 * @package     RR3
 * @author      Middleware Team HEAnet
 * @copyright   Copyright (c) 2012, HEAnet Limited (http://www.heanet.ie)
 * @license     MIT http://www.opensource.org/licenses/mit-license.php
 *
 */

/**
 * Doctrine Class
 *
 * @package     RR3
 * @subpackage  Libraries
 * @author      Janusz Ulanowski <[email protected]>
 */

class Doctrine {

    public $em = null;

    public function __construct() {
        // load database configuration and custom config from CodeIgniter
        require APPPATH . 'config/database.php';

     *   $entitiesClassLoader = new \Doctrine\Common\ClassLoader('models', 
rtrim(APPPATH, '/'));*
        $entitiesClassLoader->register();

        $proxiesClassLoader = new \Doctrine\Common\ClassLoader('Proxies', 
APPPATH . 'models');


Please help.

Sakhi Hadebe

-- 
You received this message because you are subscribed to the Google Groups 
"doctrine-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/doctrine-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to