Blackboard SOAP web service php

Alan

I am using this library to do the development about blackboard web service.

I have successfully registered the proxy tool and make it available in the administrator panel.

The connection is built and function is able to be used. But When I call the saveColumns in Gradebook in Blackboard web service library,

$coursemember_detail = $blackboard->Gradebook("saveColumns",array('courseId'=>'_50_1','columnName'=>'testing'));

It returns

array(1) { ["@attributes"]=> array(1) { ["nil"]=> string(4) "true" } }

According to blackboard api library SP13, it should return the ids of the columns.

Anyone knows the answer? Or anyone knows what problem is that? It will be great if you can provide me some advice and answer. Thanks!

Andrew Kapunin

The argument for this call should consist of 2 attributes courseId and columns. In the columns attribute you will need to describe your column as it will be shown in grade center. I haven't tested an array of columns, but for a single column that you want to create your code could look like this:

$params = array();
$params['courseId'] = '_50_1';
$params['columns'] = array(
        'columnName' => 'testing',
        'possible' => "100.0",
        "scorable"=> "true",
        "showStatsToStudent"=> "true",
        "visible"=> "true",
        "visibleInBook"=> "true",
    );

$id = $blackboard->Gradebook( "saveColumns", $params );

If everything is ok you will get a newly-created column id in return like this: _1326_1

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Securing a PHP Web service (SOAP)

From Dev

Consuming web service (Soap) using php client

From Dev

How to use php with soap web service on heroku

From Dev

Using PHP SOAP client on .NET web service

From Dev

Consuming web service (Soap) using php client

From Dev

Connecting to web service using SOAP & PHP

From Dev

Use PHP to list info from a Web Service that's using SOAP

From Dev

Web Service SOAP Request is working on SOAPUI but not working on PHP

From Dev

Web service using php soap server and java client

From Dev

C# DateTime type over web service with PHP & SOAP

From Dev

Call an operation in PHP SOAP web service from Android Phonegap

From Dev

php juniper lot hotel soap web service not working

From Dev

php with soap service

From Dev

.NET Web-service - To SOAP or not to SOAP

From Dev

Calling a web service SOAP in java

From Dev

Consuming a SOAP web service with Swift

From Dev

SOAP Web Service with Inno Setup

From Dev

How can I pass a DateTime object to a Soap web service written with C# from PHP?

From Dev

array to string conversion error during consuming a web service using php,soap,wsdl

From Java

Connect an android application to SOAP web-service

From Dev

How to implement web service consumer SOAP with Mulesoft

From Java

How to call a SOAP web service on Android

From Dev

Spring Integration Web Service with SOAP and JSON

From Dev

Pass ArrayList data into SOAP web service in android

From Dev

SOAP web service unit/integration testing

From Dev

Consume SOAP based web service with https

From Dev

C# soap web service and Java client

From Dev

iOS 8 swift Soap web service communication

From Dev

Change soap prefix to soapenv in .NET Web Service

Related Related

HotTag

Archive