RE: session ids

2001-08-16 Thread Greg Maletic
I don't believe you can get all valid sessionIDs from the server. I thinkthe API for doing so was deprecated a while back for security reasons. The way I'vesolvedthis in the past was to have each session register itself into a application-scoped hashmap, and maintain thatmap myself.

RE: session ids

2001-08-16 Thread Greg Maletic
name from the Hash ? Kindly help. Rakesh Ayilliath [EMAIL PROTECTED] - Original Message - From: Greg Maletic To: [EMAIL PROTECTED] ; Rakesh Sent: Thursday, August 16, 2001 9:54 PM Subject: RE: session ids I

RE: Form processing question

2001-08-06 Thread Greg Maletic
: Greg Maletic [mailto:[EMAIL PROTECTED]] Verzonden: maandag 6 augustus 2001 1:29 Aan: Martin Cooper; [EMAIL PROTECTED] Onderwerp: RE: Form processing question That was my idea, too, but it doesn't seem to work. I'm doing the following: logic:present parameter=productId % html:form

RE: Form processing question

2001-08-05 Thread Greg Maletic
parameter. -- Martin Cooper - Original Message - From: Greg Maletic [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 5:09 PM Subject: Form processing question I have a JSP that is used to edit data on a ActionForm bean. There are two ways for users to reach this JSP

RE: Form processing question

2001-08-05 Thread Greg Maletic
Actually, let me correct that last post...the %s at the end of each logic:present tag are NOT in my JSP. That was a typo on my part when I was putting it into the e-mail. Sorry. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] rg]On Behalf Of Greg Maletic Sent

RE: Form processing question

2001-08-05 Thread Greg Maletic
PROTECTED]; [EMAIL PROTECTED] Cc: Martin Cooper Subject: RE: Form processing question On Sun, 5 Aug 2001, Greg Maletic wrote: That was my idea, too, but it doesn't seem to work. I'm doing the following: logic:present parameter=productId % html:form action=editProductConfirmed.do

RE: Reaching Action class from Href Link

2001-08-03 Thread Greg Maletic
: jsp:useBean id=info class=logon.InfoForm scope=session / jsp:getProperty name=info property=someInfo / Does anyone else have a more elegant solution to this? -Original Message- From: Greg Maletic [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 2:13 PM To: [EMAIL PROTECTED] Subject

RE: Reaching Action class from Href Link

2001-08-03 Thread Greg Maletic
Now I'm really confused! Your original problem was that you wanted to have a link forward to an action. Your clarification shows how to do it from a form (form action=SomeAction), but then you say that using a link or href will not work. That doesn't seem to solve your original problem, does

Form processing question

2001-08-02 Thread Greg Maletic
I have a JSP that is used to edit data on a ActionForm bean. There are two ways for users to reach this JSP: 1) if they're adding a new object into my app; 2) if they're editing an existing object in my app. I'm using two mappings in my struts-config.xml file to represent these two types of

Taglibs decrease the separation between designer and developer?

2001-08-01 Thread Greg Maletic
. Struts taglibs--and other taglibs--introduce, in essence, yet another language that we all have to learn. == Greg Maletic Chief Technical Officer Zero G Software, Inc. 514 Bryant Street San Francisco, CA 94107 tel: +1.415.512.7771 x303 fax: +1.415.723.7244

Proper use of HTTP parameters in Struts

2001-08-01 Thread Greg Maletic
== Greg Maletic Chief Technical Officer Zero G Software, Inc. 514 Bryant Street San Francisco, CA 94107 tel: +1.415.512.7771 x303 fax: +1.415.723.7244 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] http://www.ZeroG.com http://www.ZeroG.com The leading provider of multi-platform software deployment

RE: Taglibs decrease the separation between designer and developer?

2001-08-01 Thread Greg Maletic
. --Greg == Greg Maletic Chief Technical Officer Zero G Software, Inc. 514 Bryant Street San Francisco, CA 94107 tel: +1.415.512.7771 x303 fax: +1.415.723.7244 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] http://www.ZeroG.com http://www.ZeroG.com The leading

RE: Errors from within Action.perform()

2001-07-26 Thread Greg Maletic
eErrors(request, errors); return (new ActionForward(mapping.getInput()));} hope this helps - Original Message - From: Greg Maletic To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 4:27 PM Subject: Errors from within Action.p