...
Problem:
...
Description:
Client failed the test, but was unable to re-take the PCOC test after waiting mandatory 24hr period with the Token provided.
The PCOC Database Support team will investigate and issue a new token ASAP.
Solution: See Mike-WIP DOS 765 https://dev dot azure.com/DSD-Marine/MSS-Portfolio/_workitems/edit/765
Problem: System shows Unknown Result when client tried to get the result.
Description: The client taken three PCOC tests, he got the result first time but for the other two attempts the system is showing Unknown Result.
Solution: The user will get Unknown Result when the exam token is deleted. Exam tokens are deleted if the candidate fails an exam and a new token is re-issued. Exam tokens are also deleted in case a brand new token is issued to the candidate.
Updated (J. Green, 2019-04-30): Let's see if we can fix this issue the same way that we resolved DOS 717.
To get all tokens for Paul Harry, let's do a search on the LM109 table for all PCOCTO_OPERATOR_CD for this user.
select *
from TM110_PCOCTO_OPERATOR
where upper(first_name_nm) like upper('paul%')
and UPPER(LAST_NAME_NM) like upper('%harry%')
ORDER BY DATE_CREATED_DTE DESC;
Use the PCOCTO_OPERATOR_CD values from the results and get all tokens:
select *
from lm109_exam_grp_token
where pcocto_operator_cd in (1670924,1670923,1670869,1669160,1669155);
The token (and results for those tests) are as follows:
...
1F114A22931345E397B661734B1F9AFC NOT STARTED (RE-ISSUE)
2A636669501741AF9593592E5D8E86D8 FAILED
736EE9EC5F6048AC874200D74ED6DBB0 FAILED (RE-ISSUE)
98C4BCB471F6423393BF879C079F83D0 FAILED
Let's get all exam information for Paul's newest, unused exam token:
...
Test Result Showing Incomplete even though they passed test
LINK to DevOps ticket 120043 -- 1. Find the record
select * from TM110_PCOCTO_OPERATOR
where upper(first_name_nm) like upper('%keon%') and UPPER(LAST_NAME_NM) like upper('%Nabavi%')
ORDER BY DATE_CREATED_DTE DESC;
select * from TM110_PCOCTO_OPERATOR Where OPERATOR_EMAIL_TXT='Nabavikeon@gmail.com';
-- 2. Check the latest attempt by using the values found in query 1
Select * From Lm109_Exam_Grp_Token WHERE PCOCTO_OPERATOR_CD in(2245383,2245221)
ORDER BY DATE_CREATED_DTE DESC;
-- use Exam_group_id for latest attempt
-- 3. Check if user actually passed,
SELECT COUNT(PASS_QUESTION_IND) AS QuestionsCorrect
FROM TM107_XREF_EXAM_GRP_QUESTION t
WHERE T.EXAM_GROUP_ID = '2246659' and Pass_Question_ind = 1;
--46 out of 50 is a pass
-- 4. Update the record Lm109_Exam_Grp_Token to 1
Update Lm109_Exam_Grp_Token
set result_status_type_cd = 1
where PCOCTO_OPERATOR_CD = 2245383;
-- 5. One more update required
SELECT *
FROM TM104_EXAM_GROUP_VERSIONS
tm104, lm109_exam_grp_token lm109WHERE exam_grp_token_id = '1F114A22931345E397B661734B1F9AFC'
and tm104.exam_group_id = lm109.exam_group_id;
The valid dates for the exam token not started are:
Generated Date: April 25, 2019 @ 1:17 PM
START: April 26, 2019 @ 1:17 PM
END: May 26, 2019 @ 1:17 PM
To summarize: the user has taken 4 tests and failed. The user has one attempt left and that attempt is valid from April 26 @ 1:17 PM until May 26 @ 1:17 PM.
To take this test, the user should use the following link to access the test:
The results from all other tests are no longer available. Test results can not be checked after an
WHERE EXAM_GROUP_ID IN (2246659)
ORDER BY DATE_LAST_UPDATE_DTE DESC;
--update the exam indicator to 1 if passed
update TM104_EXAM_GROUP_VERSIONS
set exam_passed_ind = 1
where EXAM_GROUP_ID = 2246659;
Problem: Second exam token showing as already used
Description:
Client failed the test, but was unable to re-take the PCOC test after waiting mandatory 24hr period with the Token provided.
The PCOC Database Support team will investigate and issue a new token ASAP.
Solution: See Mike-WIP DOS 765 https://dev dot azure.com/DSD-Marine/MSS-Portfolio/_workitems/edit/765
Problem: System shows Unknown Result when client tried to get the result.
Description: The client taken three PCOC tests, he got the result first time but for the other two attempts the system is showing Unknown Result.
Solution: The user will get Unknown Result when the exam token is deleted. Exam tokens are deleted if the candidate fails an exam and a new token is re-issued. Exam tokens are also deleted
...
in case a brand new token is issued to the candidate
...
Sending details to PCOCDS client (see main ticket - DOS 716). See attachments. (J. Green)
--
Connect to PCOC (PROD) database (PCOCDSP.WORLD)
Step 1. Find the Operator
...
.
SELECT Updated (J. Green, 2019-04-30): Let's see if we can fix this issue the same way that we resolved DOS 717.
To get all tokens for Paul Harry, let's do a search on the LM109 table for all PCOCTO_OPERATOR_CD for this user.
select *
from TM110_PCOCTO_OPERATOR
where upper(first_name_nm) like upper('
%paul%paul%')
and UPPER(LAST_NAME_NM) like upper('%harry%')
ORDER BY DATE_CREATED_DTE DESC;
--
Found 5 records for this operator:
1670924, 1670923, 1669155, 1669160, 1670869
Step 2. Find their Token and Exam Group ID for all the operator id
Select *
From Lm109_Exam_Grp_Token
WHERE PCOCTO_OPERATOR_CD = '1669160'
ORDER BY DATE_CREATED_DTE DESC;
from the five token below mentioned tokens are provided by the client
(PCOCTO_OPERATOR_CD, TOKEN, EXAM_GROUP_ID)
(1669160, 736EE9EC5F6048AC874200D74ED6DBB0, 1670376)
(1670869, 2A636669501741AF9593592E5D8E86D8, 1672085)
Step 3. Find their exam
Use the PCOCTO_OPERATOR_CD values from the results and get all tokens:
select *
from lm109_exam_grp_token
where pcocto_operator_cd in (1670924,1670923,1670869,1669160,1669155);
The token (and results for those tests) are as follows:
027888770BEA44CA8917B898291D348C FAILED (RE-ISSUE)
1F114A22931345E397B661734B1F9AFC NOT STARTED (RE-ISSUE)
2A636669501741AF9593592E5D8E86D8 FAILED
736EE9EC5F6048AC874200D74ED6DBB0 FAILED (RE-ISSUE)
98C4BCB471F6423393BF879C079F83D0 FAILED
Let's get all exam information for Paul's newest, unused exam token:
SELECT tm104.*
FROM TM104_EXAM_GROUP_VERSIONS tm104, lm109_exam_grp_token lm109
WHERE
EXAMGROUP_ID IN ('1670376','1672085') ORDER BY DATE_LAST_UPDATE_DTE DESC;
Both exams shows are not passed (exam_passed_ind=0). What is the current state of these exams? Are they started, finished, etc?
SELECT *
FROM LM109_EXAM_GRP_TOKEN
WHERE EXAM_GROUP_ID IN ('1670376','1672085')
ORDER BY DATE_LAST_UPDATE_DTE DESC;
Exam 1672085 (2A636669501741AF9593592E5D8E86D8):
Time remaining: 43.05, date_deleted_dte = 2019-04-25 13:17:16, exam result = FAIL
Exam 1670376 (736EE9EC5F6048AC874200D74ED6DBB0):
Time remaining: null, date_deleted_dte = 2019-04-20 00:34:26, exam result = FAIL
User is not getting results for these exams because they are deleted? Did the user finish all questions? If not, this can result in no value being returned. Let's take a closer look at the actual questions answered per exam.
SELECT COUNT(PASS_QUESTION_IND) AS QuestionsCompleted
FROM TM107_XREF_EXAM_GRP_QUESTION t
WHERE T.EXAM_GROUP_ID = '1670376';
No questions answered at all: exam not even started.
SELECT COUNT(PASS_QUESTION_IND) AS QuestionsCompleted
FROM TM107_XREF_EXAM_GRP_QUESTION t
WHERE T.EXAM_GROUP_ID = '1672085';
50 questions answered: 26 incorrect, 24 correct
Let's try to make a call to the PCOCDS web service using SOAP UI.
select *
from TC008_USER
where organization_id = 78
order by USER_ID DESC;
Look for the account that has the comment that specifies that the account is for using the PCOC web service. In this case, ISE8322 / C3i8vj5$.
Need to add header authorization (NTLM) to the web service call. See PCOCDS Web Service project ($/PCOCDS-SBDCCEP/PCOCSERVICE/DEVELOPMENT/PCOCService) to get the username and password. Look in the CPWebSiteEmulator project's web.config. Username is PCOCWCF, Domain and Password should be viewable in the config file.
Send the following XML to the PCOCDS web service:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pcoc="https://wwwapps.tc.gc.ca/saf-sec-sur/4/PCOCWS-SWCCEP">
<soapenv:Header/>
<soapenv:Body>
<pcoc:GetFinalTestResult>
<!--Optional:-->
<pcoc:request>
<!--Optional:-->
<pcoc:Username>ISE8322 </pcoc:Username>
<!--Optional:-->
<pcoc:Password>C3i8vj5$</pcoc:Password>
<!--Optional:-->
<pcoc:Token>2A636669501741AF9593592E5D8E86D8</pcoc:Token>
</pcoc:request>
token_id = '1F114A22931345E397B661734B1F9AFC'
and tm104.exam_group_id = lm109.exam_group_id;
The valid dates for the exam token not started are:
Generated Date: April 25, 2019 @ 1:17 PM
START: April 26, 2019 @ 1:17 PM
END: May 26, 2019 @ 1:17 PM
To summarize: the user has taken 4 tests and failed. The user has one attempt left and that attempt is valid from April 26 @ 1:17 PM until May 26 @ 1:17 PM.
To take this test, the user should use the following link to access the test:
The results from all other tests are no longer available. Test results can not be checked after an exam token is deleted. Exam tokens are deleted if the candidate fails an exam and a new token is re-issued. Exam tokens are also deleted if a brand new token is issued to the candidate (e.g. Fail twice and then authorize a new token for the candidate).
Sending details to PCOCDS client (see main ticket - DOS 716). See attachments. (J. Green)
--
Connect to PCOC (PROD) database (PCOCDSP.WORLD)
Step 1. Find the Operator
select *
from TM110_PCOCTO_OPERATOR
where upper(first_name_nm) like upper('%paul%')
and UPPER(LAST_NAME_NM) like upper('%harry%')
ORDER BY DATE_CREATED_DTE DESC;
--
Found 5 records for this operator:
1670924, 1670923, 1669155, 1669160, 1670869
Step 2. Find their Token and Exam Group ID for all the operator id
Select *
From Lm109_Exam_Grp_Token
WHERE PCOCTO_OPERATOR_CD = '1669160'
ORDER BY DATE_CREATED_DTE DESC;
from the five token below mentioned tokens are provided by the client
(PCOCTO_OPERATOR_CD, TOKEN, EXAM_GROUP_ID)
(1669160, 736EE9EC5F6048AC874200D74ED6DBB0, 1670376)
(1670869, 2A636669501741AF9593592E5D8E86D8, 1672085)
Step 3. Find their exam
SELECT *
FROM TM104_EXAM_GROUP_VERSIONS
WHERE EXAM_GROUP_ID IN ('1670376','1672085')
ORDER BY DATE_LAST_UPDATE_DTE DESC;
Both exams shows are not passed (exam_passed_ind=0). What is the current state of these exams? Are they started, finished, etc?
SELECT *
FROM LM109_EXAM_GRP_TOKEN
WHERE EXAM_GROUP_ID IN ('1670376','1672085')
ORDER BY DATE_LAST_UPDATE_DTE DESC;
Exam 1672085 (2A636669501741AF9593592E5D8E86D8):
Time remaining: 43.05, date_deleted_dte = 2019-04-25 13:17:16, exam result = FAIL
Exam 1670376 (736EE9EC5F6048AC874200D74ED6DBB0):
Time remaining: null, date_deleted_dte = 2019-04-20 00:34:26, exam result = FAIL
User is not getting results for these exams because they are deleted? Did the user finish all questions? If not, this can result in no value being returned. Let's take a closer look at the actual questions answered per exam.
SELECT COUNT(PASS_QUESTION_IND) AS QuestionsCompleted
FROM TM107_XREF_EXAM_GRP_QUESTION t
WHERE T.EXAM_GROUP_ID = '1670376';
No questions answered at all: exam not even started.
SELECT COUNT(PASS_QUESTION_IND) AS QuestionsCompleted
FROM TM107_XREF_EXAM_GRP_QUESTION t
WHERE T.EXAM_GROUP_ID = '1672085';
50 questions answered: 26 incorrect, 24 correct
Let's try to make a call to the PCOCDS web service using SOAP UI.
select *
from TC008_USER
where organization_id = 78
order by USER_ID DESC;
Look for the account that has the comment that specifies that the account is for using the PCOC web service. In this case, ISE8322 / C3i8vj5$.
Need to add header authorization (NTLM) to the web service call. See PCOCDS Web Service project ($/PCOCDS-SBDCCEP/PCOCSERVICE/DEVELOPMENT/PCOCService) to get the username and password. Look in the CPWebSiteEmulator project's web.config. Username is PCOCWCF, Domain and Password should be viewable in the config file.
Send the following XML to the PCOCDS web service:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pcoc="https://wwwapps.tc.gc.ca/saf-sec-sur/4/PCOCWS-SWCCEP">
<soapenv:Header/>
<soapenv:Body>
<pcoc:GetFinalTestResult>
<!--Optional:-->
<pcoc:request>
<!--Optional:-->
<pcoc:Username>ISE8322 </pcoc:Username>
<!--Optional:-->
<pcoc:Password>C3i8vj5$</pcoc:Password>
<!--Optional:-->
<pcoc:Token>2A636669501741AF9593592E5D8E86D8</pcoc:Token>
</pcoc:request>
</pcoc:GetFinalTestResult>
</soapenv:Body>
</soapenv:Envelope> ...
- Export query results to Excel.
- Will also need to send all of the images as well (\\tcwwwmaster\wwwapps\Saf-Sec-Sur\4\pcocds-sbdccep\pdf\question_images).
- Place report and images in the following GroupShare folder: \\tc4s0b\groups\AFCCB\GroupShare\PCOCDS\PCOC Exam Questions
Send details to client (see attachments).Problem: Course Provider can't access PCOC web service after attempting to change or reset password.
Description:
A Course Provider is unable to connect with the PCOC web service due to a password reset on the course provider's web service account. If the password change is initiated via the PCOC Admin Site, the new password will not work and intervention by DSD-Marine will be needed.
Solution:
To fix the issue (or to reset a Course Provider's password without causing any downtime):
Find the service user account in the TC008_USER table. To do this, you'll need the USER_ID or USER_EMAIL_TXT associated with the account:
select * from TC008_USER where USER_ID = 'KALKOS';
or
select * from TC008_USER where USER_EMAIL_TXT = 'tc@kalkomey.com'
TC008_USER_ID = 525
Update the USER_PASSWORD_TXT to any secure password:
update tc008_user set user_password_txt = 'Jkfds03-fefja' where tc008_user_id = 525;
Now we need to make sure that this password won't expire and that there is no lockout on the account:
update tc008_user set date_expiry_password_dte = null, date_lockout_account_dte = null where tc008_user_id=525;
Send updated password to the course provider and have them confirm that access is restored to the PCOC web service.
ref#TFS 14219
Problem: Server error when student attempts exam
Description:
When attempting to take the exam an error page is shown on the transport Canada site.
When visiting: https://wwwapps.tc.gc.ca/Saf-Sec-Sur/4/pcocds-sbdccep/to/p1000.aspx?lang=0&token=79efa39d-585a-4d12-bf95-c1c3773475a0
The following error is returned in the browser:
Server Error in '/Saf-Sec-Sur/4/pcocds-sbdccep/to' Application.
There is no row at position 0. (IndexOutOfRangeException)
Solution:
Quick Fix :
...
- .
- Place report and images in the following GroupShare folder: \\tc4s0b\groups\AFCCB\GroupShare\PCOCDS\PCOC Exam Questions
Send details to client (see attachments).
Problem: Course Provider can't access PCOC web service after attempting to change or reset password.
Description:
A Course Provider is unable to connect with the PCOC web service due to a password reset on the course provider's web service account. If the password change is initiated via the PCOC Admin Site, the new password will not work and intervention by DSD-Marine will be needed.
Solution:
To fix the issue (or to reset a Course Provider's password without causing any downtime):
Find the service user account in the TC008_USER table. To do this, you'll need the USER_ID or USER_EMAIL_TXT associated with the account:
select * from TC008_USER where USER_ID = 'KALKOS';
or
select * from TC008_USER where USER_EMAIL_TXT = 'tc@kalkomey.com'
TC008_USER_ID = 525
Update the USER_PASSWORD_TXT to any secure password:
update tc008_user set user_password_txt = 'Jkfds03-fefja' where tc008_user_id = 525;
Now we need to make sure that this password won't expire and that there is no lockout on the account:
update tc008_user set date_expiry_password_dte = null, date_lockout_account_dte = null where tc008_user_id=525;
Send updated password to the course provider and have them confirm that access is restored to the PCOC web service.
ref#TFS 14219
Problem: Server error when student attempts exam
Description:
When attempting to take the exam an error page is shown on the transport Canada site.
When visiting: https://wwwapps.tc.gc.ca/Saf-Sec-Sur/4/pcocds-sbdccep/to/p1000.aspx?lang=0&token=79efa39d-585a-4d12-bf95-c1c3773475a0
The following error is returned in the browser:
Server Error in '/Saf-Sec-Sur/4/pcocds-sbdccep/to' Application.
There is no row at position 0. (IndexOutOfRangeException)
Solution:
Quick Fix :
Create a new token for the candidates and send the test online URL back to the Course Provider so that they may pass this along to their candidate:
...