cancel
Showing results for 
Search instead for 
Did you mean: 

xMII Authentication

Former Member
0 Kudos

Hi,

I am using HTML page for login screen. user authentication is being done by xMII. So if the authentication fails then xMII page "error.jsp" appears which says "<b>Access denied Authentication required</b>". how can I get the same HTML login page again instead of xMII page if the authentication fails. So that user can retry to login without closing the browser.

Thanks,

Rajiv

Accepted Solutions (1)

Accepted Solutions (1)

jcgood25
Active Contributor
0 Kudos

Make your file an irpt file extension - this way the system will redirect to the login page and then subsequently back to your target page after the user has logged back in.

Regards,

Jeremy

Answers (2)

Answers (2)

Former Member
0 Kudos

using the following code to validate the user -

location = 'http://' + server + '/Illuminator/PortalLogin.jsp?target=/application/xyz.htm&IllumLoginName=' + txtUsername.value + '&IllumLoginPassword=' + txtPassword.value + '&session=true'

Thanks,

Rajiv

Former Member
0 Kudos

Rajiv

Here u din't understand wat Jeremy said ni previous post. He said to use the Page with <b>irpt</b> extension, NOT htm extension.

That is ur application page must be xyz<b>.irpt</b> as follows:

location = "http://" + server + "/Illuminator/PortalLogin.jsp?target=/application/xyz<b>.irpt</b>&IllumLoginName=" + txtUsername.value + "&IllumLoginPassword=" + txtPassword.value + "&session=true"

Regards

Som

jcgood25
Active Contributor
0 Kudos

Some additional reading for you: http://help.sap.com/saphelp_xmii115/helpdata/en/Security/Proxy_Filtering_Overview.htm

If renaming all of your pages to irpt file extensions and adjusting your links is too much effort then you can have xMII treat htm and html file extensions with the same 'security screening' efforts that are done with irpt file extensions (see HTML Security Proxy link at the bottom of the help doc page above).

Regards,

Jeremy

Former Member
0 Kudos

Is there an applet (with the display & query templates defined as params)on this page?

How are you validating the User in the background?