cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Login Screen

Former Member
0 Kudos

I wanna know if i can develop a login screen diferent to the NW login screen. I mean that i want to create a view in WebDynpro that receives some parameters from user and execute the login cheking against the UME of Was.

If so, i wanna know how to check that user parameters are valid or not to login in the app. I mean how to pass that parameters to the UME.

Thx and Rgds

Gregory.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Gregory

You can check for UID as follows

try{

IWDClientUser user = WDClientUser.getClientUser(<user id>);

}catch (Exception e){

}

You will get a exception if the userid is not found in the UME.

I am not sure how we will validate for password. Try looking into UME API's.

Regards

NagaKishore V