BlueLMSWS
Click here for a complete list of operations.
EvaluateQuestionResponse
Evaluates the response given by the user to the question and returns the result of the grading optionally will store the result, and user response in database. If storeResult is set to false the result will not be stored in the database allowing for just grading the question response without influencing the score of the assessment.
Test
The test form is only available for methods with primitive types as parameters.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /IsophBlueWS/IsophBlueWS.asmx HTTP/1.1
Host: blue.isoph.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://blue.isoph.com/EvaluateQuestionResponse"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EvaluateQuestionResponse xmlns="http://blue.isoph.com">
<userID>int</userID>
<assessmentID>int</assessmentID>
<questionID>int</questionID>
<type>Test or PreTest or PostTest</type>
<lessonID>int</lessonID>
<assessmentSectionID>int</assessmentSectionID>
<userResponse>
<string>string</string>
<string>string</string>
</userResponse>
<storeResult>boolean</storeResult>
</EvaluateQuestionResponse>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<EvaluateQuestionResponseResponse xmlns="http://blue.isoph.com">
<EvaluateQuestionResponseResult>
<ErrorCode>int</ErrorCode>
<ErrorMessage>string</ErrorMessage>
<Status>int</Status>
<Score>double</Score>
</EvaluateQuestionResponseResult>
</EvaluateQuestionResponseResponse>
</soap:Body>
</soap:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /IsophBlueWS/IsophBlueWS.asmx/EvaluateQuestionResponse?userID=string&assessmentID=string&questionID=string&type=string&lessonID=string&assessmentSectionID=string&userResponse=string&userResponse=string&storeResult=string HTTP/1.1 Host: blue.isoph.com
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <QuestionResult xmlns="http://blue.isoph.com"> <ErrorCode>int</ErrorCode> <ErrorMessage>string</ErrorMessage> <Status>int</Status> <Score>double</Score> </QuestionResult>