Return-Path: Delivered-To: apmail-incubator-beehive-user-archive@www.apache.org Received: (qmail 44357 invoked from network); 27 Apr 2005 19:23:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Apr 2005 19:23:23 -0000 Received: (qmail 59699 invoked by uid 500); 27 Apr 2005 19:24:02 -0000 Delivered-To: apmail-incubator-beehive-user-archive@incubator.apache.org Received: (qmail 59669 invoked by uid 500); 27 Apr 2005 19:24:02 -0000 Mailing-List: contact beehive-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Beehive Users" Delivered-To: mailing list beehive-user@incubator.apache.org Received: (qmail 59638 invoked by uid 99); 27 Apr 2005 19:24:01 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from ussjmh01.bea.com (HELO ussjmh01.bea.com) (63.96.162.5) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 27 Apr 2005 12:24:01 -0700 Received: from ussjfe01.amer.bea.com (ussjfe01b.bea.com [172.16.120.57]) by ussjmh01.bea.com (Switch-3.0.5/Switch-3.0.0) with ESMTP id j3RJN04w027807 for ; Wed, 27 Apr 2005 12:23:01 -0700 Received: from USBOEX01.amer.bea.com ([10.36.32.15]) by ussjfe01.amer.bea.com with Microsoft SMTPSVC(5.0.2195.6713); Wed, 27 Apr 2005 12:23:00 -0700 Received: from [127.0.0.1] ([10.36.32.129]) by USBOEX01.amer.bea.com with Microsoft SMTPSVC(5.0.2195.6713); Wed, 27 Apr 2005 13:22:59 -0600 Message-ID: <426FE68A.2060504@bea.com> Date: Wed, 27 Apr 2005 13:22:50 -0600 From: "Eddie O'Neil" User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Beehive Users Subject: Re: error help ? References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 27 Apr 2005 19:22:59.0008 (UTC) FILETIME=[85952400:01C54B5E] X-PMX-Version: 4.7.0.111621, Antispam-Engine: 2.0.2.0, Antispam-Data: 2005.4.27.9 X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Michael-- The JSP 2.0 EL is only able to bind to public JavaBean properties; the problem below should be fixable by adding: public StaffInfo getCurrentStaff() { return currentStaff; } to the JPF. Hope that helps. Eddie Miller, Michael P wrote: > Hi, getting this error: > > > > Exception: > > javax.servlet.jsp.el.ELException: Unable to find a value for > "currentStaff" in object of class "staffFlow.StaffController" using > operator "." > > > > My jsp has a line like this: > > > > > > And the Controller class has this line: > > public StaffInfo currentStaff; > > > > Inside Staffinfo there is a public member: String first_name; and a > getter getFirst_name() > > > > I verified in the action method that currentStaff.first_name has a > value. > > Any ideas why this won't work ? > > > > Thanks, > > Mike Miller > > > >