Return-Path: Delivered-To: apmail-jakarta-struts-user-archive@www.apache.org Received: (qmail 56835 invoked from network); 21 Sep 2003 09:08:59 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 21 Sep 2003 09:08:59 -0000 Received: (qmail 10556 invoked by uid 500); 21 Sep 2003 09:08:13 -0000 Delivered-To: apmail-jakarta-struts-user-archive@jakarta.apache.org Received: (qmail 10468 invoked by uid 500); 21 Sep 2003 09:08:12 -0000 Mailing-List: contact struts-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Struts Users Mailing List" Reply-To: "Struts Users Mailing List" Delivered-To: mailing list struts-user@jakarta.apache.org Received: (qmail 10455 invoked from network); 21 Sep 2003 09:08:12 -0000 Received: from unknown (HELO smtp.hispeed.ch) (62.2.95.247) by daedalus.apache.org with SMTP; 21 Sep 2003 09:08:12 -0000 Received: from t30x.corporation.i-netsystems.com (adsl-62-167-96-17.adslplus.ch [62.167.96.17]) (authenticated bits=0) by smtp.hispeed.ch (8.12.6/8.12.6/tornado-1.0) with ESMTP id h8L98Oi8022158 for ; Sun, 21 Sep 2003 11:08:24 +0200 From: Reto Badertscher To: struts-user@jakarta.apache.org Subject: Re: org.apache.struts.taglib.html.BEAN Date: Sun, 21 Sep 2003 11:07:16 +0200 User-Agent: KMail/1.5.1 References: <200309211029.20892.rbadertscher@swissonline.ch> In-Reply-To: <200309211029.20892.rbadertscher@swissonline.ch> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309211107.16436.rbadertscher@swissonline.ch> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N After tracking the STRUTS code i found out that it happens when the form tag is processed: org.apache.struts.taglib.html.HiddenTag contains a property name with value 'org.apache.struts.taglib.html.BEAN' BaseFieldTag.jave ....... results.append(" value=\""); if (value != null) { results.append(ResponseUtils.filter(value)); } else if (redisplay || !"password".equals(type)) { -- name is not found --> Object value = RequestUtils.lookup(pageContext, name, property, null); ------ if (value == null) value = ""; results.append(ResponseUtils.filter(value.toString())); } Hope this helps Reto --------------------------------------------------------------------- To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org For additional commands, e-mail: struts-user-help@jakarta.apache.org