I’m currently testing CTK (Compliance Tool Kit) installed on my local machine.
After successfully launching CTK and creating a project, I implemented the test Device Discovery Response according to the MDS Specification (MDS Specification | MOSIP Docs 1.2.0).
The response is captured correctly by CTK, but the process does not proceed beyond that point.
To troubleshoot, I also registered the partner and created a device in the PMP portal (under Device Details – Create Device), but the issue persists.
I would appreciate any help or guidance on how to resolve this.
Below is the Device Discovery Response data I used:
==================================================================
// cpp
resp._deviceId = “1”;
resp._deviceStatus = “Not Registered”;
resp._certification = “L0”;
resp._serviceVersion = “0.9.5”;
resp._deviceSubIdList.append(“0”);
resp._callbackId = “http://127.0.0.1”;
resp._deviceCode = “111122223333”;
resp._specVersionList.append(“0.9.5”);
resp._purpose = “Registration”;
resp._digitalId._serialNo = “111122223333”;
resp._digitalId._make = “Brand”;
resp._digitalId._model = “Model”;
resp._digitalId._type = “Iris”;
resp._digitalId._deviceSubType = “Double”;
resp._digitalId._deviceProvider = “test1111”;
resp._digitalId._deviceProviderId = “test1111”;
resp._digitalId._dateTime = “2025-07-17T11:18:12”;
resp._error._errorCode = “100”;
resp._error._errorInfo = “Device not registered”;