Hello,
We have deployed a java application and want enabled authetication through EP Portal. Using the Visual Admin -> Security Provider, we can add BasicAutheticationModule to this application but when trying to access it pop-up a window for user-id/password.
How we can acheive the same login page authentication for this Java application, the way we have it when we access /irj/portal.
regards,
Jaish
Request clarification before answering.
The portal uses the ticket logonstack by default. Can you use this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The help is certainly confusing! http://help.sap.com/saphelp_nw70ehp1/helpdata/en/8f/ae29411ab3db2be10000000a1550b0/frameset.htm tells us that the basic authentication is used for basic and form based authentication. I'm not sure how you force it to use a form instead of the popup. You could try and wrap your J2ee app in a portal component and then launch the app as a portal component. It's a hack.
I'm not sure either, but as I mentioned, a simple portal component can act as a wrapper.
public class Default extends AbstractPortalComponent
{
public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
{
response.write("< script>");
response.write("window.location.href='https://answers.sap.com/myapp'");
response.write("< /script>");
};
}
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 5 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.