cancel
Showing results for 
Search instead for 
Did you mean: 

Logon Page Issues.

Former Member
0 Kudos

Hi Friends,

I am Working LogonPage.My Req is Only One EP Server But We need diff URL

This is Main URL: http://hostname:55000/irj/portal-----> When we will Open this URL we are getting mail Portal Logon Page

I want this type of URL : http://hostname:55000/scw/logon.jsp -


> By using this URL I will get Client Logon Page. When I will Pass the UserID and Password and Click on Submit Button That URL Looks Like http://hostname:55000/scw/logon.jsp?redirecturl=/irj/portal

Finally By using UserId and Password we will Connect the Main URL.

When We have to Pass the http://hostname:55000/scw/logon.jsp ---> URL We I will get Client Logon Page

Logon.Jsp Having Total Client Req.

Here My Requirement is How I Will get UID and Password From The UME.

In Logon Page I will Put One Condition.

How I will get UID and Password from The UME

If(usrid. equals () && Password. Equals())

<%

String redirectURL = "http://hostname:55000/irj/portal";

response.sendRedirect(redirectURL);

%>

else

{

/// Please Check it UID and PWD

}

I am thinking like that. Now I want How get the UID and PWD From UME.

Can you give me these ANS:

1. Is it Possible for get the Password from the UME.

2. Could you tell me any Simple way to Create Logon Page.

3. Is it Possible to Create logon Page.

4. Suppose I will create this type of logon page. Finally I am getting any Issues.

Regards

Vijay Kalluri

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,Vijay Kalluri,

As I know, it is impossible to get password from UME,

you'd better use JAAS to change the logon page, some customer Login Module should be ok.

when getting userName from your jsp, the method refreshUserInfo(userName) checks the user name if exists in the active user store(UME),then login success or failure.

Best Regards.

Answers (1)

Answers (1)

Former Member
0 Kudos

No..