Return-Path: Delivered-To: apmail-struts-user-archive@www.apache.org Received: (qmail 61738 invoked from network); 13 Sep 2007 08:21:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Sep 2007 08:21:57 -0000 Received: (qmail 43649 invoked by uid 500); 13 Sep 2007 08:21:44 -0000 Delivered-To: apmail-struts-user-archive@struts.apache.org Received: (qmail 42998 invoked by uid 500); 13 Sep 2007 08:21:41 -0000 Mailing-List: contact user-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Struts Users Mailing List" Reply-To: "Struts Users Mailing List" Delivered-To: mailing list user@struts.apache.org Received: (qmail 42987 invoked by uid 99); 13 Sep 2007 08:21:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Sep 2007 01:21:40 -0700 X-ASF-Spam-Status: No, hits=2.2 required=10.0 tests=HTML_MESSAGE,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of paulus.benedictus@gmail.com designates 209.85.132.248 as permitted sender) Received: from [209.85.132.248] (HELO an-out-0708.google.com) (209.85.132.248) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Sep 2007 08:23:17 +0000 Received: by an-out-0708.google.com with SMTP id c37so68122anc for ; Thu, 13 Sep 2007 01:21:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; bh=HPDdgIIvv93/fMXdtuosjNuzwzFmLiWznxwrzBsChzs=; b=gTiR8TRqxgA1YN5HZYI0g9rYUyrgsAxtjs3hR8fCHGIj1ZASHHDcAmr9rQ0W9N9a8RCpQ8RPFyIHduW3vkNLLigwQsKXtLwSbd5nQHB2nh17ypQng/kTlduFdiKdWHY8/og04cZoDQeRtYuQ9s4sFO4O55vWLHCOQC6YP/QKhgo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=sXOkL9Y1ZgAb5ThvWh5S5xpHjFLRCoJ7uQ8/wWx3Bj57JsPaOj7SO65Gp/JlkPEUsIA4JOl+NWp4NVpiBMDMim5TaHDFEKBs+Gt+XuH4gy/AZcrNIaBJv1X28UwUBQshPTPpuBssHYmTn6Oe9RYED9TjlLnNkP+u/zScv/6CK/w= Received: by 10.100.138.2 with SMTP id l2mr390665and.1189671676482; Thu, 13 Sep 2007 01:21:16 -0700 (PDT) Received: by 10.70.91.1 with HTTP; Thu, 13 Sep 2007 01:21:16 -0700 (PDT) Message-ID: Date: Thu, 13 Sep 2007 03:21:16 -0500 From: "Paul Benedict" Sender: paulus.benedictus@gmail.com To: "Struts Users Mailing List" Subject: Re: problem with MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_17887_4442621.1189671676477" References: <12647969.post@talk.nabble.com> X-Google-Sender-Auth: 0b0ffbe83cef0516 X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_17887_4442621.1189671676477 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X32Form is the name of your java class, not the bean. You get the name of the bean from the "name" attribute of your action mapping. Paul On 9/12/07, msg2ajay wrote: > > > hi, > i am trying to get the collection object (Vector) form Action > Class > to my Jsp. I already set to my FormBean and i am getting an error as.. > > javax.servlet.jsp.JspException: Cannot find bean: "X32Form" in any scope > my Action class is (X32Action.java): > ------------------------------------ > Vector lableGenVect = (Vector) xParser.xmlLableGen (Comm_vect); > form.setLableParam (lableGenVect); > > my FormBean Class is (X32Form.java): > ------------------------------------ > public Vector getLableParam(){ > return lableParam; > } > public void setLableParam(Vector lables){ > this.lableParam = lables; > System.out.println("X32 FORM __________"+lables); // I am able to > set ie. i can print the values of the action class. > } > > my jsp: > --------- > > > > > > > > > thanQ, > Ajay > -- > View this message in context: > http://www.nabble.com/problem-with-%3Clogic%3Aiterate...-tf4433312.html#a12647969 > Sent from the Struts - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscribe@struts.apache.org > For additional commands, e-mail: user-help@struts.apache.org > > ------=_Part_17887_4442621.1189671676477--