I have a ejb container with several different beans and several
different security roles.
I want to use this beans from a secured webpage.
I created two jsp files:
In the first page you make an selection. This selection is a combo box
filled with data, provided by a bean from the ejb container.
I am using a java class like this from the jsp:
<%@page import="nl.technolution.tpts.web.WebReportman"%>
<%
WebReportman cSession = new WebReportman();
cSession.InitSecurity();
cSession.InitInterfaces();
In this class i create the connections to the home and remote
sessions.
After submitting i start another jsp file with the selections as
parameter and call the report generator within WebReportman.
I used ISSrealm to secure the webcontainer.
The first time i make a call to the ejb container it works, the second
time i get an access denied.
I studied the hello example and that works, but uses a pdbfile in
stead of a NT domain. And it never changes role.
Please, can anybody help me with some advise or another example.
Ruud