eoidigital / eoi-blackboard-bundle
A Symfony2 Wrapper for the Blackboard's SOAP Web Service API
Installs: 77
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/framework-bundle: 2.*
- symfony/yaml: 2.*
Requires (Dev)
- ass/xmlsecurity: dev-master
- besimple/soap-bundle: dev-master
- besimple/soap-client: dev-master
- besimple/soap-common: dev-master
- besimple/soap-wsdl: dev-master
- mockery/mockery: *
This package is not auto-updated.
Last update: 2025-03-29 20:21:26 UTC
README
A symfony2 bundle to communicate to Blackboard's API.
Installation
Step 1: Using Composer
Install it with Composer!
// 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:
$ 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:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new EOI\BlackboardBundle\EOIBlackboardBundle(), ); } // ... }
Step 3: Configure the bundle
# 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
Step 4: Configure BeSimpleSoapClient
# 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
LEGAL DISCLAIMER
This software is published under the MIT License, which states that:
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.