eoidigital/eoi-blackboard-bundle
最新稳定版本:v1.0.0
Composer 安装命令:
composer require eoidigital/eoi-blackboard-bundle
包简介
A Symfony2 Wrapper for the Blackboard's SOAP Web Service API
关键字:
README 文档
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.
统计信息
- 总下载量: 79
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-20