Return-Path: Delivered-To: apmail-incubator-beehive-user-archive@www.apache.org Received: (qmail 11755 invoked from network); 28 Jun 2005 03:18:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Jun 2005 03:18:46 -0000 Received: (qmail 57679 invoked by uid 500); 28 Jun 2005 03:18:45 -0000 Delivered-To: apmail-incubator-beehive-user-archive@incubator.apache.org Received: (qmail 57657 invoked by uid 500); 28 Jun 2005 03:18:44 -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 57639 invoked by uid 99); 28 Jun 2005 03:18:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jun 2005 20:18:44 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=RCVD_BY_IP X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of carlin.rogers@gmail.com designates 64.233.162.195 as permitted sender) Received: from [64.233.162.195] (HELO zproxy.gmail.com) (64.233.162.195) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jun 2005 20:18:43 -0700 Received: by zproxy.gmail.com with SMTP id 14so264394nzn for ; Mon, 27 Jun 2005 20:18:40 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A57M/A6KQtnI7q2yNabYev+DqlpdUFgGcnqqft3c+3qgKWBB2n1isN2yfhewXWqOK3gGaBwxAcxrY+PExehsmXT3bgbjPhCZeqar0MawcSk4yfq4Gsvnw9mFfvGXa5fzHzZdh236nrP53NFNnKJJhPtJAd7eOWVGUv48JcKZmJE= Received: by 10.36.50.18 with SMTP id x18mr3201744nzx; Mon, 27 Jun 2005 20:18:40 -0700 (PDT) Received: by 10.36.104.13 with HTTP; Mon, 27 Jun 2005 20:18:40 -0700 (PDT) Message-ID: Date: Mon, 27 Jun 2005 21:18:40 -0600 From: Carlin Rogers Reply-To: Carlin Rogers To: Beehive Users Subject: Re: Netui ServletContainerAdapter and instantiate SharedFlowControllers messages In-Reply-To: <4DEF16167D0B3A4889E4C5940F9E5B1C05AA9C50@cacexc03.americas.cpqcorp.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <4DEF16167D0B3A4889E4C5940F9E5B1C05AA9C50@cacexc03.americas.cpqcorp.net> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hi Sunny Yee, The first start up message is just saying that you do not have=20 a container specific adapter configured. The ServletContainerAdapter=20 interface in org.apache.beehive.netui.pageflow allows you to=20 plug in different containers. The following javadoc explains how the adapters are "discovered". http://incubator.apache.org/beehive/apidocs/classref_pageflows/org/apache/b= eehive/netui/pageflow/ServletContainerAdapter.html There is a Tomcat version in the src trunk... netui/src/tomcat-webapp/5x/org/apache/beehive/netui/tomcat/TomcatServletCon= tainerAdapter.java The message that you are running without the URL template descriptor file is not a problem. It is just informational. Beehive supports a mechanism to format rewritten URLs in the output of the NetUI tags. For instance, a URL template may have a hard coded port or server name (maybe for a proxy server front end). You do not need to have this file in an application. The "using default expression evaluator..." message is also a one=20 time info message. Expression languages can be configured in the beehive-netui-config.xml file. Your application may not even have this configuration file. This message is not an error unless you've configured your app with another expression=20 language ExpressionEngineFactory. Different languages may=20 implement the ExpressionEvaluator interface to expose the=20 language for use in the NetUI JSP tags. Hope this helps. Carlin On 6/27/05, Yee, Sunny K wrote: > Hi, >=20 > Can anyone shed some light on the cause of these 2 different messages to > the tomcat console? Even though I get these errors, my page comes up > fine. I don't reference any shared flows in my controller class. >=20 > Thanks in advance for any help. >=20 > Sunny Yee > Hewlett-Packard Co. >=20 >=20 > I get this message when tomcat starts up. >=20 > - No ServletContainerAdapter specified or discovered; using class > org.apache.beehive.netui.pageflow.DefaultServletContainerAdapter > - Running without URL template descriptor, > /WEB-INF/beehive-url-template-config.Xml >=20 > I get this message after I requests a URL. >=20 > - Attempting to instantiate SharedFlowControllers for request /test.do > - Using a default expression evaluator of type > "org.apache.beehive.netui.script.el.ExpressionEvaluatorImplNetUIELEngine > Factory" >