Re: Yellow background color in text fields?

2004-02-11 Thread Andrew Shirk
Your google toolbar? At 04:00 PM 2/11/2004, you wrote: With the following code the text field background for email is yellow, even though the background for password is white. I have nothing in my css that should trigger this. If I change the designation "email" to "password" the yellow backg

Re: URGENT - Help defending Struts

2003-12-18 Thread Andrew Shirk
www.roomandboard.com http://www.retrospecthome.com At 09:48 AM 12/18/2003, you wrote: All: Our CIO is currently fighting the use of Struts by saying that it is not widely used in B2C sites. Does anyone know of any sites, preferably commerce sites that are using Struts? This would be extremely

Re: Container-Managed Authentication in web.xml vs . Specifying Paths in the struts-config.xml

2003-10-07 Thread Andrew Shirk
Logical paths work fine for me in web.xml (using tomcat 4.1.x): FORM /do/login/edit /do/login/fail Andrew At 03:11 PM 10/7/2003, you wrote: People answer questions without reading my original post. Therefore, I must

RE: [OT] Web Services, what have I done?

2003-08-21 Thread Andrew Shirk
Yes, SOAP, WSDL and UDDI are THE standards for web services. The primary motivation for web services is interoperability among disparate systems. Without the using the standards, you won't get the interoperability. The Java Web Services Developer Pack (JWSDP - http://java.sun.com/webservices/)

Re: Nesting

2003-03-05 Thread Andrew Shirk
The struts-nested taglib that ships with Struts. At 06:05 PM 3/5/2003 +0200, you wrote: For adding which tag lib do I have to add? yaron - Original Message - From: "Andrew Shirk" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent

Re: Nesting

2003-03-05 Thread Andrew Shirk
Try using the method I suggested in this message: http://marc.theaimsgroup.com/?l=struts-user&m=104575299502257&w=2 At 03:53 PM 3/5/2003 +0100, you wrote: Hi Sundar, I tried it both ways, but I _always_ get a Jsp compile error, saying that _jspx_xxx_1 is already defined, where xxx stands for the i

Re: More Than Form On A JSP

2003-02-26 Thread Andrew Shirk
One method would be to encode the form info into the urls of the next and previous button links. Then in your action, get the request parameters and populate the form. At 02:38 PM 2/26/2003 -0800, you wrote: I am developing an architecture for the rest of my development staff to use on a new J2E

RE: Passing parameters to Actions

2003-02-25 Thread Andrew Shirk
No need for that either since the superclass constructor is implicitly called. At 01:38 PM 2/25/2003 -0700, you wrote: maybe a super() call in the constructor. But you shouldn't need anymore than that. Brandon Goodin Phase Web and Multimedia PO Box 85 Whitefish MT 59937 P (406) 862-2245 F (406) 86

Re: Nested iterate tags

2003-02-20 Thread Andrew Shirk
Using the nested:iterate inside of logic:iterate should work. I've modified the code below, but of course have not tested this. "> name="comp" property="component_ID"/> "> property="part_ID"/> property="description"/> At 07:32 PM 2/19/2003 -0500, you wrote: Hi, I'm hoping someone ca

Re: Re[4]: [OT] conn pooling - what next?

2002-08-27 Thread Andrew Shirk
Hi Rick, My understanding is that people still successfully use Poolman in production environments. However, I would be worried about using any product that will likely never be updated. Over the weekend, I migrated one of my apps from Poolman to Tomcat 4.1.9 connection pooling (which uses co

Re: SOLVED: Losing my sanity: 1.1b & Validator problems

2002-08-21 Thread Andrew Shirk
> web.xml: > > > > action > *.do > > > -Devin > > > > > -Original Message- > From: Andrew Shirk [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 21, 2002 4:46 PM > To: Struts Users Mailing List > Cc: [EMAIL P

Re: SOLVED: Losing my sanity: 1.1b & Validator problems

2002-08-21 Thread Andrew Shirk
the example application. On Wednesday, August 21, 2002, at 03:38 PM, Jerry Jalenak wrote: > Andrew, > > It's been my experience that if you don't specify parameters in the > order > the DTD specifies, you can get some funky results.. > > Jerry > >>

SOLVED: Losing my sanity: 1.1b & Validator problems

2002-08-21 Thread Andrew Shirk
is correct. > > BTW: we are most likely going to production on 1.1-b2 > > Good luck. > > -Devin > > -Original Message- > From: Andrew Shirk [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 21, 2002 12:13 PM > To: Struts Users Mailing List > Cc: [EMAI

Re: Losing my sanity: 1.1b & Validator problems (more info)

2002-08-21 Thread Andrew Shirk
> this you can "view source" and see the validation code it generated. > This will show you if the validator plug-in is setup correctly and that > your XML is correct. > > BTW: we are most likely going to production on 1.1-b2 > > Good luck. > > -Devin >

Re: Losing my sanity: 1.1b & Validator problems

2002-08-21 Thread Andrew Shirk
() as the first > line > ... because I just use > given validation-rules (required, minlength ...) and some > DynaValidatorForms. > Any help on that ;-? > Ralf > > - Original Message - > From: "Richards, Devin N (Devin)" <[EMAIL PROTECTED]> > To

Losing my sanity: 1.1b & Validator problems

2002-08-20 Thread Andrew Shirk
I upgraded to Struts 1.1b last week (and to Tomcat 4.1.9 - which is great great stuff) and everything seemed to go fine. However, today, I was demonstrating my app to a friend when I noticed Validator validations were not being performed. I checked the logs and the validation configuration fil

bug? Re: Dynamic Message Keys

2002-06-10 Thread Andrew Shirk
scriptlet. type.description.<%=type%> On Friday, June 7, 2002, at 03:59 PM, Andrew Shirk wrote: > I need to construct a message key dynamically, and am looking for a > solution that does not use scriptlets. Can anyone suggest an > alternative to the code below, which works but is u

Dynamic Message Keys

2002-06-10 Thread Andrew Shirk
I need to construct a message key dynamically, and am looking for a solution that does not use scriptlets. Can anyone suggest an alternative to the code below, which works but is ugly. <% String key = "type.description." + type; %> Thanks very much, Andrew -- To unsubscribe, e-mail:

Dynamically constructing a resource key

2002-06-07 Thread Andrew Shirk
I'm new to Struts and have been using the archives for the last few weeks. However, now I need some feedback. Is there a prettier or more appropriate way of constructing or concatenating a string using Struts in an effort to use the constructed string as some key? I could only get this ugly ap