Register the user with the SAP Mobile Server.
Try{
UserManager userManager = new UserManager(clientConnection);
UserManager.registerUser(<captcha text>,true);
}
Catch(SMPException e){
}
It requires to send username and password as a part of request manager during client connection initialization. CAPTCHA text should be passed to the user during the first registration by the CAPTCHA challenge listener callback. If asynchronous, the user has to implement and register ‘IODPUserRegistrationListener’ to retrieve a callback.