struts-config and tiles configuration

2003-06-25 Thread Bob Byron
I am getting a strange error, and I can't figure out why. As I understand it, I can put a plug-in in the struts-config file, however, I am receiving the following error message when I do: 23:00:04,841 ERROR [Digester] Parse Error at line 54 column -1: Element "struts-config" does not allow "p

Re: struts-config and tiles configuration

2003-06-25 Thread Bob Byron
Oh, and I am using Struts-1.1-rc2. Bob Byron wrote: I am getting a strange error, and I can't figure out why. As I understand it, I can put a plug-in in the struts-config file, however, I am receiving the following error message when I do: 23:00:04,841 ERROR [Digester] Parse Error at li

Re: struts-config and tiles configuration

2003-06-25 Thread Bob Byron
g.xml? - Original Message - From: "Bob Byron" <[EMAIL PROTECTED]> To: "Struts Users" <[EMAIL PROTECTED]> Sent: Wednesday, June 25, 2003 9:38 PM Subject: struts-config and tiles configuration I am getting a strange error, and I can't figure out why. As I unders

Re: struts-config and tiles configuration

2003-06-25 Thread Bob Byron
Well, I think I found the problem. It appears my build script was compiling against Struts 1.1 but copying over Struts 1.0. Thanks for your help, Bob Byron Bob Byron wrote: Hmmm, I am not sure as to what you are asking. As a test, I am using the struts-config.xml file from the tiles

How do I configure multiple struts-config files?

2003-06-23 Thread Bob Byron
It doesn't seem like it should be this hard, but I am trying to use multiple struts-config files. I keep getting errors. I have attached my configuration and error below. Any help is appreciated. I am using struts 1.1 rc2. By the way, whenever a config file can't be found, a NullPointerException

Re: How do I configure multiple struts-config files?

2003-06-23 Thread Bob Byron
r and one configuration file. -Original Message- From: Bob Byron [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 10:48 AM To: [EMAIL PROTECTED] Subject: How do I configure multiple struts-config files? It doesn't seem like it should be this hard, but I am trying to use multiple str

tag nesting error

2002-04-24 Thread Bob Byron
the only difference is the space is now gone, and I receive no more error message. Is this correct behavior? Or, is this a bug? Bob Byron

Logon API in struts?

2001-06-15 Thread Bob Byron
I would like to know from the Struts elite if there are any struts centric facilities to help with login/logout? I just don't want to reinvent the wheel if it is already out there.   The username and password would be entered on the webpage itself and not entered into the user/pass dialog popu

Is struts really loading the resources?

2001-06-27 Thread Bob Byron
ource file being found and loaded successfully. Am I missing something? How do I know that they properties file was definately loaded? How can I view the properties that are currently available? I am just not sure what avenue of debugging to pursue at this point. Thank You,

RE: Is struts really loading the resources?

2001-06-27 Thread Bob Byron
; application resources from resource > ApplicationResources > > The previous log entry mentions nothing about the > resource file being found and loaded successfully. > Am > I missing something? How do I know that they > proper

RE: Is struts really loading the resources?

2001-06-27 Thread Bob Byron
that the system is trying to open? Is there any way to dump all of the properties that have been loaded? I would like to be able to more accurately verify what is going on here. I am running this under JBuilder 5, which is another possible source of an issue. Thank You, Bob Byron --- "Geddes,

RE: Is struts really loading the resources?

2001-06-27 Thread Bob Byron
ApplicationResources > > properties > > were loaded, or were they: > > 2001-06-27 09:20:31 - path="/test" :action: > Loading > > application resources from resource > > ApplicationResources &g

Cannot find bean in scope null

2001-06-27 Thread Bob Byron
: javax.servlet.ServletException: Cannot find bean org.apache.struts.taglib.html.BEAN in scope null Thank You, Bob Byron __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/

Re: null pointer error

2001-06-27 Thread Bob Byron
Is your text element contained within an tag? --- Nick Chalko <[EMAIL PROTECTED]> wrote: > My jsp page with the following tag > maxlength="20" value="test"> inside > > > generates the following java code (from VAJ 3.5.3) > do { > // end >

jsp vs do

2001-07-02 Thread Bob Byron
hat the "do" takes you through the struts actions, but don't understand why the login link was set to login.jsp instead of login.do initially. (I am not asking "What" it does so much as I am asking "Why" was the decision made to do it that way.) Thank You, Bob By

Re: Is struts really loading the resources?

2001-07-08 Thread Bob Byron
I am running under JBuilder 5. It uses the 3.2.1 version of Tomcat. But I have had the worst time getting the resources to be visible while trying to run inside the environment. I would greatly appreciate an example of the simplest project file that would make the system work. Bob Byron RAD

Re: Cannot find bean in scope null

2001-07-08 Thread Bob Byron
Yep, that was the problem. Thank You, Bob Byron RAD Systems, Inc. www.radit.com (972)516-4256 - Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 07, 2001 11:45 PM Subject: Re: Cannot find bean in sco

How do you format a date using struts?

2001-08-14 Thread Bob Byron
owing, but I am not sure how to implement it in struts. <%= DateFormat.getDateInstance(DateFormat.SHORT).format(orders[interator].getExpDttm()); %> Thank You, Bob Byron __ Do You Yahoo!? Make international calls for as low as $.04/minute

Re: How do you format a date using struts/iterate?

2001-08-15 Thread Bob Byron
rform the following formatting myself. DateFormat.getDateInstance(DateFormat.SHORT).format(orders[interator].getDeliveryDate()); Thank You, Bob Byron --- Bob Byron <[EMAIL PROTECTED]> wrote: > How do you format a date using struts? > > I have a list of orders that I am logic:iterat

Re: How do you format a date using struts/iterate?

2001-08-15 Thread Bob Byron
Thanks, that worked great! --- Gregor Rayman <[EMAIL PROTECTED]> wrote: > "Bob Byron" <[EMAIL PROTECTED]> wrote: > > In your example below, the variable "orders" does > not contain > the iterator, but the single element of the > iterator. Y

Re: Strtus 1.0 and Tomcat 4.0

2001-08-21 Thread Bob Byron
I am using Struts 1.0 with Tomcat 4.0 and it works well. Bob Byron --- Sarbjit Singh <[EMAIL PROTECTED]> wrote: > Hi, does Stutrs 1.0 work at all with Tomcat 4.0? > Is there a 1.1 version of struts that may work with > it? > Where can i find infor about working Struts 1.0 -

Re: Work Flow Question

2001-08-22 Thread Bob Byron
WizardStep1Action extends WizardAction. WizardStep2Action extends WizardAction. This would allow you to map the seperate steps into the struts-config file where they are identifiable and the forwards are configurable, but still maintain the majaority of the business logic in one class. Bob Byron

Digester content with elements

2001-11-01 Thread Bob Byron
I am inferring below): MyText("I want to remember this date, "); MyDate(); MyText(", forever!"); Granted, it would be easy enough to do: I want to remember this date, , forever! But, I prefer to do the first way. Thank You, Bob Byron

Re: Digester content with elements

2001-11-02 Thread Bob Byron
Hmmm Is this too easy or too hard of a question to be answered? Bob - Original Message - From: "Bob Byron" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, November 01, 2001 3:16 PM Subject: Digester content wit

Re: Digester content with elements

2001-11-02 Thread Bob Byron
use a DOM parser, e.g. xerces, to do > > this? > > > > Regards, > > Scott > > > > - Original Message - > > From: "Bob Byron" <[EMAIL PROTECTED]> > > To: "Struts Users Mailing List" > > <[EMAIL PROTECTED]> > >

Re: Digester content with elements

2001-11-02 Thread Bob Byron
ts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, November 02, 2001 9:51 AM Subject: Re: Digester content with elements > Could you not use a DOM parser, e.g. xerces, to do this? > > Regards, > Scott > > - Original Message - > From: "Bob B