cancel
Showing results for 
Search instead for 
Did you mean: 

sap EP 7.3 J2EE APP Login page

Former Member
0 Kudos

I want to show standard portal login page for my J2EE application. are there any steps to add this logic to my j2ee application?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Resolved!!

I have added below code to my initial jsp

ref: forum link

<%@ page language="java" %> <%@ page import = "com.sap.security.api.*" %>

<%  IAuthentication authenticator = UMFactory.getAuthenticator();

IUser user = authenticator.forceLoggedInUser(request, response); %>

<%= user.getName() %>

Answers (0)