2017 © Pedro PelĂĄez
 

symfony-bundle eoi-blackboard-bundle

A Symfony2 Wrapper for the Blackboard's SOAP Web Service API

image

eoidigital/eoi-blackboard-bundle

A Symfony2 Wrapper for the Blackboard's SOAP Web Service API

  • Thursday, March 26, 2015
  • by eoi
  • Repository
  • 3 Watchers
  • 0 Stars
  • 66 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

EOIBlackboardBundle

A symfony2 bundle to communicate to Blackboard's API., (*1)

Installation

Step 1: Using Composer

Install it with Composer!, (*2)

// composer.json
{
    // ...
    require: {
        // ...
        "eoidigital/eoi-blackboard-bundle": "dev-master",
    }
}

Then, you can install the new dependencies by running Composer's update command from the directory where your composer.json file is located:, (*3)

$ php composer.phar update

Step 2: Register the bundle

Enable the bundle by adding the following line in the app/AppKernel.php file of your Symfony application:, (*4)

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new EOI\BlackboardBundle\EOIBlackboardBundle(),
        );
    }

    // ...
}

Step 3: Configure the bundle

``` yaml, (*5)

app/config/config.yml

You can get these parameters from your Blackboard Admin Panel > Building Blocks > Proxy Tools"

eoi_blackboard: proxy_tool: password: yourPassword clientVendorId: yourVendorId clientProgramId: yourProgramId loginExtraInfo: ~ expectedLifeSeconds: 2, (*6)


### Step 4: Configure BeSimpleSoapClient ``` yaml # app/config/config.yml # You can get these parameters from your Blackboard Admin Panel > Building Blocks > Web Services" be_simple_soap: clients: ContextApi: wsdl: https://your.blackboard.domain/webapps/ws/services/Context.WS?wsdl UserApi: wsdl: https://your.blackboard.domain/webapps/ws/services/User.WS?wsdl classmap: UserVO: EOI\BlackboardBundle\VO\UserVO UserExtendedInfoVO: EOI\BlackboardBundle\VO\UserExtendedInfoVO CourseApi: wsdl: https://your.blackboard.domain/webapps/ws/services/Course.WS?wsdl classmap: CourseVO: EOI\BlackboardBundle\VO\CourseVO CourseMembershipApi: wsdl: https://https://your.blackboard.domain/webapps/ws/services/CourseMembership.WS?wsdl classmap: CourseVO: EOI\BlackboardBundle\VO\CourseMembershipVO

This software is published under the MIT License, which states that:, (*7)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE., (*8)

The Versions

26/03 2015

dev-master

9999999-dev https://github.com/eoidigital/EOIBlackboardBundle

A Symfony2 Wrapper for the Blackboard's SOAP Web Service API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jon GonzĂĄlez Guerra

blackboard api