Hi,

Just wanted to add, I just tried something that relates to the previous
post. Sorry..should have done this first.

When I remove the <jsp:setProperty name="loginbean" property="*" /> it works
fine. The reason I have that there is to "auto" populate the javabean
"loginbean" when the form is submited. I do it this way because I submit the
form BACK to the same page, and there is a scriplet code that is like os:

<%
if( request.getParameter("login") != null )
  loginbean.login(request,response)
%>

That is also done in the header, so that any page with the login form on it,
gets submitted back to itself and thus the 2nd time through it
auto-populates the login NAME and PASSWORD fields of the loginbean javabean,
so that when the login() method is called, it already has those fields in
it. Make sense?

Why would this cause a problem? Is this an issue with Servlet 2.2 JSP 1.1
that didn't exist before? I dont have this problem on my sie right now doing
it this way. Id very much like to know if the way I am doing it is wrong.
Please..no emails about using Model 1 or 2. I know I am using Model 1.5,
where the logic is done in the javabean. I am more concerned with why the
above breaks the page with Orion but works fine with IIS/JRUN using JSP 1.0.

thanks again. Hopefully this will clear up some issues from my previous
response.

Reply via email to