what is "dlb" ? it is not initialized in your fragment of code.
       <jsp:useBean id="dlb" scope="session" 
class="com.dealer.beans.DealerBean"/>
gets initialized in another jsp.


What happens if the email is not found. would be caught earlier

and you are
certainly missing closing ">" from the <input> tag      Yup, I mistakenly 
deleted it trying to clean up the email
<td width="147">
                              <input tabindex="1" type="text" name="j_username" 
value="
<%
                  out.print(dlb.getEmail() + "\"");
%>
                        </td>

Here's the access log  the entries at 15;34 are using Firefox,  the ones at 
15:42 are Google's browser


69.207.4.57 - - [27/Mar/2011:15:34:16 -0700] "GET 
/Dynacorn/catalog/dealerwelcome.jsp HTTP/1.1" 200 1870
69.207.4.57 - - [27/Mar/2011:15:34:27 -0700] "POST 
/Dynacorn/catalog/authControl.jsp HTTP/1.1" 302 -
69.207.4.57 - - [27/Mar/2011:15:34:27 -0700] "GET 
/Dynacorn/catalog/dealer/dealerwelcome.jsp HTTP/1.1" 200 1893
69.207.4.57 - - [27/Mar/2011:15:34:30 -0700] "POST 
/Dynacorn/catalog/dealer/j_security_check HTTP/1.1" 302 -
69.207.4.57 - s...@sor.com [27/Mar/2011:15:34:30 -0700] "GET 
/Dynacorn/catalog/dealer/dealerwelcome.jsp HTTP/1.1" 500 2158
69.207.4.57 - - [27/Mar/2011:15:42:14 -0700] "GET 
/Dynacorn/catalog/dealerwelcome.jsp HTTP/1.1" 200 1870
69.207.4.57 - - [27/Mar/2011:15:42:20 -0700] "POST 
/Dynacorn/catalog/authControl.jsp HTTP/1.1" 302 -
69.207.4.57 - - [27/Mar/2011:15:42:20 -0700] "GET 
/Dynacorn/catalog/dealer/dealerwelcome.jsp HTTP/1.1" 200 1893
69.207.4.57 - - [27/Mar/2011:15:42:23 -0700] "POST 
/Dynacorn/catalog/dealer/j_security_check HTTP/1.1" 200 676
there are no more entries


Again, Firefox works fine, Google doesn't.

Thanks for your help,

Dick



________________________________
From: Konstantin Kolinko <knst.koli...@gmail.com>
To: Tomcat Users List <users@tomcat.apache.org>
Sent: Sunday, March 27, 2011 5:16 PM
Subject: Re: Mac and Google Authentication Issue

2011/3/28 Dick Eastlake <dickeastl...@yahoo.com>:
>                               <input tabindex="1" type="text" 
> name="j_username" value="
> <%
>                   out.print(dlb.getEmail() + "\"");
> %>
>                         </td>

1) what is "dlb" ? it is not initialized in your fragment of code.
What happens if the email is not found.

2) you might be missing " (depends on your actual code) and you are
certainly missing closing ">" from the <input> tag
3) it could be written as <input ... value="<%= ... %>">

> I get only two relevant (but not particularly helpful) entries in the logs:

There are certainly other ("non relevant" as you think) entries there,
aren't they?

Best regards,
Konstantin Kolinko

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to