Re: setting debug level for digester, sax, beanUtils...

2002-11-27 Thread Kris Schneider
g > > logging on for my own code. I have put the debug and detail init > parameter > > to 0 in web.xml but I receive debug messages from digester, sax, > beanUtils > > and others. > > > > Does anyone know how to confugure the struts-config or/and web.xml? >

RE: Iterate through resultset

2002-11-22 Thread Kris Schneider
> Do you Yahoo!? > Yahoo! Mail Plus – Powerful. Affordable. Sign up now. > http://mailplus.yahoo.com > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- Kris Schneider

RE: Iterate through resultset

2002-11-21 Thread Kris Schneider
tabase, and you won't have a > >"ResultSet" anymore. This way, you only have to make changes to the layer > >of code that provides the Collection and nothing in the view is affected. > >To the JSP, it's all Strings. > > > >Take all that for what it's worth... I'm _v

Re: JSTL Question (EL vs. RT + Struts)

2002-11-21 Thread Kris Schneider
of help to anyone, but if you want more details I'd be happy to follow-up. Quoting Kris Schneider <[EMAIL PROTECTED]>: > Sounds like a job for a beanutils mechanism that does something like > (untested): > > Class clazz = GLOBALS.class; > String className = clazz.getNa

Re: JSTL Question (EL vs. RT + Struts)

2002-11-20 Thread Kris Schneider
tance easily - and use that instance to reference other objects. Incidentally, I don't believe there are any getters in the Globals class. David Graham wrote: I see, so I have to do constants.getMyKey(). I guess that's easy enough. David -- Kris Schneider <mailto:[EMAIL PROTECT

Re: JSTL Question (EL vs. RT + Struts)

2002-11-20 Thread Kris Schneider
> > > > > > > >-- > >To unsubscribe, e-mail: > ><mailto:[EMAIL PROTECTED]> > >For additional commands, e-mail: > ><mailto:[EMAIL PROTECTED]> > > > _ > Protect your PC - get McAfee.com VirusScan Online > http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Re: struggling with indexed/repeating input fields

2002-11-19 Thread Kris Schneider
etters and setters so that they > automatically sized the the internal array list representation upon > request. > This approach eliminated the IndexOutOfBoundsError on submit of our form. > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional comma

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
of > request processing!). > > -----Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, November 20, 2002 00:56 > To: Struts Users Mailing List > Subject: RE: Loosing my parameter in the multipart request > > > Just to clarify, your speci

RE: Selective error message display

2002-11-19 Thread Kris Schneider
stion, > though. > > -= J > > > -Original Message- > > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > > Sent: Tuesday, November 19, 2002 10:40 AM > > To: Struts Users Mailing List > > Subject: Re: Selective error message display > >

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
Just to clarify, your specific situation violates #3. The content type of your request is multipart/form-data, right? Quoting Kris Schneider <[EMAIL PROTECTED]>: > Sure, you can do anything with the request object you want. The caveat is > that > the getParameter methods will o

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
stream. Quoting "Murray, Christopher" <[EMAIL PROTECTED]>: > what if you wanted to retrieve a request parameter for a branch in your > reset method ? > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > Sent: 19 November 2002 15:

Re: Selective error message display

2002-11-19 Thread Kris Schneider
c:present tag, but I can't figure out what they should > be. > > Thanks in advance, > > -= James > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- Kris S

RE: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
i.e. my reset method exploded but when I commented it out the validate > worked fine. > > -Original Message- > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > Sent: 19 November 2002 13:39 > To: Struts Users Mailing List > Subject: Re: Loosing my parameter in the

Re: Loosing my parameter in the multipart request

2002-11-19 Thread Kris Schneider
; > } > > log.debug("Entering UploadActionForm.reset"); > } > > When all this executes this outputs > > mapping.getParameter() = userAction > request.getParameter(mapping.getParameter()) = > null > request = org.apache.st

Re: When I use enctype="multipart/form-data" ...

2002-11-19 Thread Kris Schneider
> > > if my form enctype is multipart/form-data I can't see my submit button. > Please help me how can I solve this problem. > > Thanks. > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: How to Redirect ???

2002-11-18 Thread Kris Schneider
orward = mapping.findForward("success"); > forward.setPath(sb.toString); > forward.setRedirect(true); > mapping.addForward(forward); > > return forward; > > > -Original Message- > > From: Kris Schneider [mailto:[EMAIL PROTECTED]] > > Sent: 1

Re: How to Redirect ???

2002-11-18 Thread Kris Schneider
> The advantage of this method is logging which can be done in the class and > you have no context other than what you specify in the > tag. > > > Brian > > > > - Original Message - > From: "Kris Schneider" <[EMAIL PROTECTED]> &g

Re: How to Redirect ???

2002-11-18 Thread Kris Schneider
> > Thanks in advance. > > wolfgang- > > > -- > wolfgang <[EMAIL PROTECTED]> > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- > To unsubscr

RE: [Struts Tip] #15 Use chained exceptions. Design consideration.

2002-11-18 Thread Kris Schneider
-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: request parameter

2002-11-18 Thread Kris Schneider
gt; forwarding it to jsp page. > > Is there any way to do it? > > > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- Kris Schneider <mailto:[EMAIL PROTECTED

Re: Putting request parameter into page context

2002-11-15 Thread Kris Schneider
tartRow is in the request (URL.com/someaction.jsp?startRow=10). > thanks, > Mike -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re: jsp:setProperty

2002-11-13 Thread Kris Schneider
nexpected manners. Regards Wendy Craig -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org> -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.d

Re: jsp:setProperty

2002-11-13 Thread Kris Schneider
cat 4.1.14). RequestUtils.populate requires the bean to be an instance of org.apache.struts.action.ActionForm for post requests. In addition, it looks like it requires that post requests pass through the Struts servlet (otherwise it throws an NPE). Quoting Kris Schneider <[EMAIL PROTECTED]>: > Right,

Re: jsp:setProperty

2002-11-12 Thread Kris Schneider
t the conversion a simple matter of HashTable tbl = javax.servlet.http.HttpUtils.parsePostData(int len, ServletInputStream in) Map map = new HashMap(tbl); Only thin i am unsure about is the length parameter. Regards Wendy -Original Message- From: Kris Schneider [mailto:kris@;dotech.com]

Re: jsp:setProperty

2002-11-12 Thread Kris Schneider
che.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org> -- Kris Schneider <mailto:

Re: jsp:setProperty

2002-11-12 Thread Kris Schneider
be, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org> -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail:

RE: [SIDEBAR] Form population (Was RE: request.setAttribute() form confusion)

2002-11-11 Thread Kris Schneider
ommands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re: request.setAttribute() form confusion

2002-11-11 Thread Kris Schneider
> Thanks, > Susan Bradeen > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > -- Kris Schneider <mailto:kris@;dotech.com> D.O

Re: [html:errors] Separation of Global Errors from Specific Errors

2002-11-11 Thread Kris Schneider
, please immediately notify > LabOne at (800)388-4675. > > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > --

Re: working with resource.properties files in JSTL & Struts

2002-11-08 Thread Kris Schneider
> <mailto:struts-user-unsubscribe@;jakarta.apache.org> > > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For ad

Re: Ted, et al, Struts Book

2002-11-07 Thread Kris Schneider
trictly prohibited. If you > have received this transmission in error, please delete the message. Thank > you > > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:st

Re: working with resource.properties files in JSTL & Struts

2002-11-07 Thread Kris Schneider
gt; Anthony > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://

Re: How to validate manually?

2002-11-07 Thread Kris Schneider
Whoops! You also asked where the Struts source code is. For 1.1 it's in: RequestProcessor.processValidate And I think to be correct for 1.1 I should've said: forward = mapping.getInputForward() Quoting Kris Schneider <[EMAIL PROTECTED]>: > Check out Action.saveErrors fo

Re: How to validate manually?

2002-11-07 Thread Kris Schneider
t;automatically" when validate is set to true in the tag? I've > grepped through the source code for 'ERROR' but there was too much! > > Thanks, > > -- > Wendy Smoak > http://sourceforge.net/projects/unidbtags > -- Kris Schneider <mailto:kris@;do

Re: NullpointerException in ActionForms

2002-11-07 Thread Kris Schneider
e(), form); > } else { > session.setAttribute(mapping.getAttribute(), form); > } > } > > Is that whole block just not necessary? > > -- > Wendy Smoak > http://sourceforge.net/projects/unidbtags > -- Kris Schnei

Re: java.util.Date

2002-11-06 Thread Kris Schneider
No problem - it's all Rick and Antoni's fault anyway for bringing it up :-D. Eddie Bush wrote: > > !!! Gotcha! Ok - I can see where that might pose a serious issue! > Sorry for being stubborn :-) > > Kris Schneider wrote: > > >But the thread-safety issue rea

Re: Can a filter handle all the apps in a container?

2002-11-06 Thread Kris Schneider
> > > > > > > > > >-- > >To unsubscribe, e-mail: > ><mailto:struts-user-unsubscribe@;jakarta.apache.org> > >For additional commands, e-mail: > ><mailto:struts-user-help@;jakarta.apache.org> > > > > > >-- > >To u

Re: java.util.Date

2002-11-06 Thread Kris Schneider
re ... you would have a possible problem :-) Until > you have a need to do that, you don't need to synchronize. > > Kris Schneider wrote: > > >Apologies if I'm misinterpreting, but I think Antoni's concern is that the > >SimpleDateFormat's parse and format

Re: java.util.Date

2002-11-06 Thread Kris Schneider
Thanks guy for bringing this thread safe issue to my attention. > > > > > -- > > Rick > mailto:maillist@;reumann.net > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-ma

Re: Re[4]: java.util.Date

2002-11-06 Thread Kris Schneider
unless you maybe use > that SingleThreadModel which I think hands them out from a pool. > Moot point though I think if I do the stuff in the static block. > But I could be wrong). > > -- > > Rick > mailto:maillist@;reumann.net > > > -- > T

RE: Passing an (Dyna)ActionForm to the business object

2002-11-06 Thread Kris Schneider
scribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:st

Re: Passing an (Dyna)ActionForm to the business object

2002-11-06 Thread Kris Schneider
t; To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > Vincent Stoessel > Linux Systems Developer > vincent xaymaca.com > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

RE: Passing an (Dyna)ActionForm to the business object

2002-11-05 Thread Kris Schneider
a single method call. Quoting Kris Schneider <[EMAIL PROTECTED]>: > +1 > > Although it may seem like splitting hairs because (in your case) the same > object instance is passed to the doBusiness method, there's a huge > architectural/design difference between:

RE: Passing an (Dyna)ActionForm to the business object

2002-11-05 Thread Kris Schneider
ut at least > > now all thefields can be managed from one place and less prone to > > mismached case/spelling (for me anyway) than it was before. > > > > Of course I really do not want to violate the Struts MVC model, is there > > a better way than the first method? > > >

Re: Application Scope

2002-11-04 Thread Kris Schneider
ubscribe@;jakarta.apache.org> > For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org> -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

RE: html:link with multiple parameters

2002-11-04 Thread Kris Schneider
che.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.

Re:

2002-11-04 Thread Kris Schneider
enough to make > > me use . The tags are better than using a map because > > you don't have to write scriptlet code to initialize the map (you could > init. the map in other places but it's still a pain). It's more efficient > and clearer to specify ind

Re:

2002-11-04 Thread Kris Schneider
d > handles multiple parameters much better than > > David -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re:

2002-11-04 Thread Kris Schneider
can provide a Map that contains all of the > request > > parameters for the link. > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > >

Re:

2002-11-04 Thread Kris Schneider
I just need to repeat paramName="myForm" paramId="mySecondSelection" > ? > If so, how to seperate the 2 dynamic parameters ? > > > thx in advance, > > > marcus -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.co

Re: Ted's book..

2002-11-01 Thread Kris Schneider
-- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

RE: [OT] Getting a Collection's size in JSTL

2002-10-30 Thread Kris Schneider
elegant solution. > > > >--Kevin > > > >-Original Message- > >From: David Graham [mailto:dgraham1980@;hotmail.com] > >Sent: Wednesday, October 30, 2002 3:44 PM > >To: [EMAIL PROTECTED] > >Subject: Re: [OT] Getting a Collection's size in JSTL >

Re: [OT] Getting a Collection's size in JSTL

2002-10-30 Thread Kris Schneider
ArrayList > and you can wrap them in this class when using them in JSTL. > > A similar approach could be taken with the Map interface. I wish they would > > just add getSize to the standard classes :-(. > > David -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech

Re: DispatchAction and declarative exception handling

2002-10-23 Thread Kris Schneider
biased by our team's use of both DispatchAction and error pages... -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

RE: action mapping input

2002-10-18 Thread Kris Schneider
uot; forward. > > John Nicholas > > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re: action mapping input

2002-10-18 Thread Kris Schneider
is > never run so it couldn't use the forward. The controller is returning > you to the input page. > > If a validation in the action fails (like a business logic failure)then > you can use a "failure" forward. > > John Nicholas > > > >

RE: Question regarding Struts and Weblogic 7

2002-10-18 Thread Kris Schneider
gt; prefix="html" > uri="http://jakarta.apache.org/struts/tags-html-1.0.2"; %> > > This resulted in an IOException, as these URIs do not resolve. > Also, deleting the .tld files from WEB-INF but keeping > > > /WEB-INF/struts-html.tld > /WEB-I

Re: Question regarding Struts and Weblogic 7

2002-10-18 Thread Kris Schneider
results have been the same. > > > > Any help resolving this issue will be greatly appreciated! > > > > Ed > > > > -- > > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:struts-user-help@;jakarta.apache.org> > > -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re: Multiple parameter to

2002-10-18 Thread Kris Schneider
>working for one parameter like: > > paramProperty="value"> > > now, what if I want to add another parameter to this list? > > thanks. > > ATTA -- Kris Schneider <mailto:kris@;dotech.com> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: [OT] WAS Connection Pool

2002-10-15 Thread Kris Schneider
WAS pool, > but it seems not possible. Is it possible to configure a different pool for > > WAS? e.g. Oracle pool? Have you tried it for WL? > > Any pointer to some way to proceed would be kindly appreciated. Absolutely > lost, how to bind the OracleConnectionCacheImpl to

Re: [OT] WAS Connection Pool

2002-10-15 Thread Kris Schneider
> >><mailto:[EMAIL PROTECTED]> > >>For additional commands, e-mail: > >><mailto:[EMAIL PROTECTED]> > > > > > > > > > >_ > >MSN Photos is the easiest way to

Re: action include or forward attribute not working?

2002-10-14 Thread Kris Schneider
> >Any ideas? > > > > > > > >thx > > > >andy > > > > > > > > > > > > > > > > > > > >-- > > > >To unsubscribe, e-mail: > > > >< mailto:[EMAIL PROTECTED]> > > > >For additional commands, e-mail: > > > >< mailto:[EMAIL PROTECTED]> > > > > > > > > > > > >-- > > > >To unsubscribe, e-mail: < > > > >mailto:[EMAIL PROTECTED]> > > > >For additional commands, e-mail: < > > > >mailto:[EMAIL PROTECTED]> > > > > > > > > > > > > > > > > > > > > > > > > > > > _ > > > MSN Photos is the easiest way to share and print your photos: > > > http://photos.msn.com/support/worldwide.aspx > > > > > > > > > -- > > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > > > > > ___ > > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! > > Yahoo! Mail : http://fr.mail.yahoo.com > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: curious mapping anomaly: tomcat to weblogic6.1

2002-10-13 Thread Kris Schneider
> tomcat 4.0.1. > > Can anyone tell me what is happening here? > > Cheers > jfc > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: Image rendering best practice

2002-10-12 Thread Kris Schneider
t the mail subject makes all the difference 8-) > bye, > Mohan > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- Kris Schneider <mailto:[EMAIL PROTECTED]

RE: Radio buttons inside an iterate tag?

2002-10-11 Thread Kris Schneider
robably! I'll take a look. I still need to get the nightly build and try > out the expression language stuff. > > Thanks, > > -- > Wendy Smoak > http://sourceforge.net/projects/unidbtags > > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Radio buttons inside an iterate tag?

2002-10-11 Thread Kris Schneider
gt;type="edu.asu.vpia.value.ResolutionView"> > value="<%=resView.getKey()%>"/> > > > And I get: > 0143062 > > I think that's the best I can do at present, although I'll probably try to > get rid of the sc

Re: Entity Usage

2002-10-10 Thread Kris Schneider
jar and use the common-digester.jar. Would this work seamlessly? > Would there be any issues with doing this? This is a must due to our > company not wanting to release a beta product in 1.1 and our struts > config now exceeding 1000 lines of configuration. > > > &g

RE: Radio buttons inside an iterate tag?

2002-10-10 Thread Kris Schneider
s fine without radio buttons.) > > It seems to me that isn't putting that resView bean in a > place that the scriptlet can find it. > > -- > Wendy Smoak > http://sourceforge.net/projects/unidbtags > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech

Re: [OT] Re: "Avoid Heavy Use of Logic Tags" ???

2002-10-10 Thread Kris Schneider
It's > certainly something to do for post-1.1 though. > > > Dave > > Craig > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: [OT] Re: "Avoid Heavy Use of Logic Tags" ???

2002-10-09 Thread Kris Schneider
ncreasing emphasis on struts so maybe in the future we'll > see this. Although, considering how long it took them to release a 2.3 > compliant Websphere this may be wishful thinking. > > Dave -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: Do something when null _or_ blank?

2002-10-08 Thread Kris Schneider
enerated code is as efficient as possible? > > Any suggestions appreciated! > > -- > Wendy Smoak > http://sourceforge.net/projects/unidbtags > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: preserve Forward order

2002-09-21 Thread Kris Schneider
ed forward > names. How can I get the forward names in the same order as in the > struts-conf.xml? > > > > > >Thanks! > > > > > >Billy Ng > > > > > > > -- > > Eddie Bush > > > > > > > > > > -- > > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: How to remove ActionForm with session scope from the session object

2002-09-20 Thread Kris Schneider
; > > > >_ > >Introducing the all new and improved continental.com. With a totally new > >personalized design, it's the best place to go. Before you go. > > > >Continental Airlines. Work Hard. Fly Right. > > > >http://www.continental.com -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: Call action from JSP

2002-09-05 Thread Kris Schneider
> invoke.do? > > > } > > > %> > > > > > > Thanks. > > > > > > > > > -- > > > To unsubscribe, e-mail: > > > <mailto:[EMAIL PROTECTED]> > > > For additional commands, e-mail: > > > &

Re: Use of Iterator tag

2002-08-14 Thread Kris Schneider
o share and print your photos: > http://photos.msn.com/support/worldwide.aspx > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL

Re: Struts problem

2002-06-27 Thread Kris Schneider
> > > > tiles.def.xml > "/WEB-INF/views/layout/standardLayout.jsp"> > > > > > > > > > > > > > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

Re: seeking help with tip#2

2002-06-08 Thread Kris Schneider
" property on your action form class. So, do a little less work ;-) and give it a whirl. -- Kris Schneider <mailto:[EMAIL PROTECTED]> D.O.Tech <http://www.dotech.com/> smime.p7s Description: S/MIME Cryptographic Signature

<    1   2   3   4   5