Re: [OT] Re: 12 month contract - Toronto - immediate start

2003-04-04 Thread Becky Norum
On Fri, 2003-04-04 at 11:18, James Mitchell wrote: On the topic of gender bashing. When my wife and I married, I knew I was marrying Miss Right, what I didn't know was that her first name is 'Always'!!! lol - thanks for the laugh, James. I need that this morning! Becky

Re: Session beans are shared across multiplae instances ofbrowsers!

2003-03-31 Thread Becky Norum
, that window will (usually) share the same session as any other browser windows that are open. Does this make sense? -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu

Re: [OT] overwhelmed [was] Re: Does a degree matter?

2003-03-31 Thread Becky Norum
a lot of those moments. =) -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [OT] Re: Does a degree matter?

2003-03-29 Thread Becky Norum
into local universities and colleges and at least check out your options. Best of luck, Becky Norum (BS Biochemistry, MS Information Systems) From: Brandon Goodin [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED

Re: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Becky Norum
On Fri, 2003-03-28 at 03:41, Simon Kelly wrote: However, House at Pooh Corner is still my volume of choice, with a nice cup of coco. =]:0) Simon Now that's a smiley I've never seen before.. care to enlighten, Simon? Becky

Re: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Becky Norum
On Fri, 2003-03-28 at 05:50, Simon Kelly wrote: Was just lookin for something that was close to a top-hat. I get bored easily ;-) and I don't have my teddy bear to play with :-( awww.. I have a voodoo doll at my desk that keeps me entertained. Great for getting out all sorts of frustrations..

[OT] Query design question

2003-03-28 Thread Becky Norum
My database schema references a number of lookup tables. For example, DATA: id primary key category references lookup_category(key) upload_loc references lookup_upload_location(key) (etc) LOOKUP_CATEGORY: key primary key name description

Re: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Becky Norum
On Fri, 2003-03-28 at 06:12, Simon Kelly wrote: Ah yes ... that voodoo that you do . Worst joke I could come up with on 14 cups of coffee and two apples. I need more inspiration ... I do hope you are kidding. Or do you have stock in some antacid company? =) I need coffee badly.. but

Re: [FRIDAY]Re: Just let me be the first to say...

2003-03-28 Thread Becky Norum
On Fri, 2003-03-28 at 07:18, Rachel wrote: I'm just finding there is an awful lot to learn! Rachel That's the best and worst thing! Sometimes I feel like my head is gonna explode.. but it's fun. Frustrating sometimes, but fun. =) Becky

Re: [OT] Query design question

2003-03-28 Thread Becky Norum
Simon, Thanks for the suggestion - that's a good idea with less OH. Also makes me think of just storing them in a application level Hashmap bean or something loaded at application startup, which is how I handle form collections.. Hmmm.. Becky Bald man looks more like a lady with a bouffant

Re: [OT] Library files interfering with each other!?!

2003-03-28 Thread Becky Norum
On Fri, 2003-03-28 at 07:44, Simon Kelly wrote: Nope. Didn't work, still getting the same problem. Do you know if it is possable to cut up a jar and extract parts and ditch the rest?? Cheers Simon yup. jar xvf xxx.jar expands it (like tar) you can then delete the appropriate

RE: How to upload multiple files??

2003-03-28 Thread Becky Norum
Hi All: I have requirement that the user could upload more then one file. Something like attachments in a mail? How could I achieve this? I know I could use html:file property=file / to upload a single file. I need to extend this for multiple files --Siva Jagadeesan Siva,

java.lang.IllegalStateException: Cannot forward after response hasbeen committed

2003-03-27 Thread Becky Norum
Does anyone know what the following exception means? javax.servlet.jsp.JspException: java.lang.IllegalStateException: Cannot forward after response has been committed It seemed to be related to something in this area of code: // ModuleConfig config = (ModuleConfig)

Re: java.lang.IllegalStateException: Cannot forward after responsehasbeen committed

2003-03-27 Thread Becky Norum
a forward it doesn't. So do I need to call the page directly rather than forward? Thanks so much, Becky On Thu, 2003-03-27 at 19:55, Alexandre Jaquet wrote: what's your scope definition ? (in the struts-conf) -- Alexandre Jaquet - Original Message - From: Becky Norum [EMAIL

Re: java.lang.IllegalStateException: Cannot forward after responsehasbeen committed

2003-03-27 Thread Becky Norum
On Thu, 2003-03-27 at 22:38, Craig R. McClanahan wrote: There is a fundamental rule in the servlet API that things included with a RequestDispatcher.include() call (which is what jsp:include does under the covers) cannot modify the HTTP headers of the response. Since you need to modify those

[OT] JSP custom tags

2003-03-25 Thread Becky Norum
made a change to an SQL statement and logged that statement). Does anyone have a suggestion for where else Tomcat might be caching this tag? Thanks so much, -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http

Re: [OT] JSP custom tags

2003-03-25 Thread Becky Norum
Sorry, I forgot to mention I did that as well. Thanks for the suggestion, though. Becky On Tue, 2003-03-25 at 19:10, Mike Duffy wrote: Try deleting the Tomcat work directory. --- Becky Norum [EMAIL PROTECTED] wrote: I've been beating my head against this problem for the last two hours

RE: [OT] JSP custom tags

2003-03-25 Thread Becky Norum
the JSP to see whether it is using the new code (you'd only notice this if your change changed the tag interface in certain ways). -Original Message- From: Becky Norum [mailto:[EMAIL PROTECTED] I've been beating my head against this problem for the last two hours; I'm hoping

RE: Accessing resource properties

2003-03-24 Thread Becky Norum
Marco, The code Susan gave you is the code you would use within your JSP file to access a Application Resource property. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Mon, 2003-03-24

DynaActionForm - html:select example?

2003-03-15 Thread Becky Norum
Does anyone have an example of how to use a DynaActionForm form-property with a html:select in the associated form? I'm a little confused - do I have to use a Map to represent the options? So I can't just hard-code them in the page? Thanks! Becky Norum [EMAIL PROTECTED

Re: html:link and parameters to session

2003-03-12 Thread Becky Norum
for html:link; I think you can pass a Map containing the parameters to do so. http://jakarta.apache.org/struts/api/org/apache/struts/taglib/html/package-summary.html Becky Norum [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

Re: Object going missing is session..

2003-03-12 Thread Becky Norum
On Wed, 2003-03-12 at 11:52, Jamesey wrote: its those damn code completion widgets.. i swear..!! And thus the beauty of a plain text editor. Or does that just make *me* responsible for my silly mistakes? ;) Still loyal to emacs, Becky Norum [EMAIL PROTECTED

[OT] Learning Curve RE: tiles and logic:forward

2003-03-11 Thread Becky Norum
you can keep track of your own questions and the solutions as you go and eventually add to the communal knowledge with more *newbie FAQ*. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu

Request-URI

2003-03-07 Thread Becky Norum
Is there a way to get the request URI to use in a logic tag in place of %= request.getRequestURI() % e.g. logic:match name=Request-URI value=/index.jsp I could write a scriptlet to handle the comparison, but I'm trying to not use them. TIA! -- Becky Norum Database Administrator Center

RE: Request-URI

2003-03-07 Thread Becky Norum
On Fri, 2003-03-07 at 16:20, Dave Newton wrote: I think it's requestURL, but hey :) I'm just wondering why you'd want to do that, and would wonder if there wasn't a better way architecturally to avoid it, 'cuz it seems like that could clutter up a page pretty quickly. Dave It was my

RE: Request-URI

2003-03-07 Thread Becky Norum
On Fri, 2003-03-07 at 16:20, Chen, Gin wrote: There's an easy way to do this using JSTL. (Don't take this verbatim.. I am doing this straight from my Friday mode mind and not looking it up). c:set var=requestURI value=${pageContext.request.requestURI}/ c:if test=${requestURI ==

RE: struts IDE

2003-03-06 Thread Becky Norum
. It might reduce it by a bit but if people cant even use Google then what makes you think they will be able to use a search box on the struts site? -Tim -- Becky Norum [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED

[OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread Becky Norum
or xfig to generate decent looking .eps for papers, so I.. um.. do them in Windows. Any other (free - we are a poor academic research center :D) modeling software out there people use? Or tips on maximizing xfig/DIA? -- Becky Norum [EMAIL PROTECTED] Becky Norum Database Administrator Center

RE: [OT] IDE / ERD modeling (Was: Re: struts IDE)

2003-03-06 Thread Becky Norum
work with it. Rick, I took a look at jEdit and bookmarked it for looking at more thoroughly in my free time :P . The same for Poseidon, Robert. :D I'll probably end up trying to get things working with ArgoUML and see how the exported eps files look. Regards, Becky Norum Database

Re: Nesting logic:iterate

2003-03-05 Thread Becky Norum
Heiko, I _believe_ that field is a deprecated struts tag, so that word may give you problems. Try changing field to some other variable name, and give that a go. Hopefully, someone who is a better struts programmer than I am can comment on this later - it's still early in the US. =) -- Becky

Re: Where can I find Example

2003-03-05 Thread Becky Norum
, -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Wed, 2003-03-05 at 08:22, Pellier, Marc wrote: Hi, I'm new Where can I find exampleS of struts Application (other than struts-example

Re: Extra bytes at the end of the class file

2003-03-05 Thread Becky Norum
Joshua, Try recompiling the class - I've heard that this can happen when the JVM and compiler are different, especially if the compiler is old. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu

[OT] Java method size limitations

2003-03-05 Thread Becky Norum
write a class that large, but in case you ever run across this.. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu

RE: Problem with Monkey examples

2003-03-05 Thread Becky Norum
The MonkeyTree example didn't work for me in Tomcat 4.1.18 - I went back down to 4.0.6 and it worked fine. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Wed, 2003-03-05 at 11:21, Pellier

RE: Problem with Monkey examples

2003-03-05 Thread Becky Norum
... Thanks Jon - I'll definitely take a look since my deployment uses Tomcat 4.1.8 and I'd like to keep it that way. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Wed, 2003-03

Re: [OT] Ancient computing (was RE: [OT] Don't beat on James! (wasRE:[OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Becky Norum
Wow - some of you guys are *old*. =) My first was a Commodore 128K. Spent endless hours typing in games from the Commodore magazine - budding programmer even then. :P Becky - Original Message - From: Dave Newton [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]

Re: [OT] Ancient computing (was RE: [OT] Don't beat on James! (wasRE:[OT] JavaScript: ActionForm Does Not Contain Dynamically Set Data)

2003-03-04 Thread Becky Norum
he was too slow; she could do it faster... =) Becky On Tue, 2003-03-04 at 17:12, Dave Newton wrote: On Tue, 2003-03-04 at 16:51, Becky Norum wrote: Wow - some of you guys are *old*. =) Hey now. I was just geeky at a very, very early age. There's a difference... although... maybe I'd

RE: ExceptionHandler

2003-03-04 Thread Becky Norum
Well said, Wendy. I often do the same - I've learned much more from some of the questions on various forums than from books or tutorials. Becky On Tue, 2003-03-04 at 17:52, Wendy Smoak wrote: I'm sorry you're stuck, but speaking only for myself, your question was too vague for me to even try

Re: Html::textarea loses characters

2003-03-02 Thread Becky Norum
-config should haev appropriate mappings. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Sun, 2003-03-02 at 12:29, Sakis Chatzinikolaou wrote: Hi all, I have a problem with html:textarea

Re: Html::textarea loses characters

2003-03-02 Thread Becky Norum
-config should haev appropriate mappings. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Sun, 2003-03-02 at 12:29, Sakis Chatzinikolaou wrote: Hi all, I have a problem with html:textarea

Re: Html::textarea loses characters

2003-03-02 Thread Becky Norum
Sakis, I actually copied and pasted your classes and settings into my own server and had no problems. Only difference was my suffix is *.action instead of *.do - unless I made some other typo. I'm running Tomcat 4.0.6 on Redhat 7.3 with struts 1.1-b3. Did you check your log files - did they

Re: logic:iterate examples plz.

2003-02-27 Thread Becky Norum
. -- Becky Norum * [EMAIL PROTECTED] On Thu, 2003-02-27 at 08:41, shashi_struts wrote: HI I am working on the concept in which i stored string as key and arraylist as value in the hashtable.The arraylist stores a class name A which have two parameter name and value I tried too much

Re: html:form WITHIN a logic:iterate tag

2003-02-27 Thread Becky Norum
=id/' bean:write name=project property=subject / /a /logic:iterate That worked well for me. The above is a simple example, I did the same for an EDIT/DELETE like you want to do, but it's more complex, so I didn't post it. -- Becky Norum Database Administrator Center for Subsurface

Re: RE: Retaining values through multiple actions

2003-02-27 Thread Becky Norum
to store, you must use getAttribute to retrieve. To see your attribute, enumerate the attributes. -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Thu, 2003-02-27 at 09:25, Jason Vinson wrote

Re: Re: Retaining values through multiple actions

2003-02-27 Thread Becky Norum
to append the parameters as such. Just put them in the appropriate request, and forward, and it should still be available. Does this make sense? -- Becky Norum Database Administrator Center for Subsurface Sensing and Imaging Systems (CenSSIS) Northeastern University http://www.censsis.neu.edu On Thu

RE: Netscape 4.7x and Struts performance problems

2003-02-25 Thread Becky Norum
Unfortunately, sometimes people are stuck using whatever their sys admins install. I can install latest versions on my own box, but if working on one of our departmental machines, I'm stuck with NS4.7 for now. Also, depending upon your target audience - much of the world and even the US uses

dynamically rename form-bean?

2003-02-24 Thread Becky Norum
cannot *easily* be passed using a String conversion to form parameters. Another solution I've considered is wrapping the bean properties in an XML format, passing that as a form variable, and reassigning to the bean in the Action class. Any thoughts or comments are much appreciated. -- Becky Norum

Re: dynamically rename form-bean?

2003-02-24 Thread Becky Norum
session level objects and multiple windows, but didn't receive feedback. Makes me wonder if this is a really *simple* issue or a really *tough* one. -- Becky Norum * [EMAIL PROTECTED] Database Administrator CenSSIS (Center for Subsurface Sensing and Imaging Systems) http://www.censsis.neu.edu

object scope / nested tree implementation

2003-02-18 Thread Becky Norum
-- Becky Norum [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: return (mapping.getInputForward()); - not working

2003-02-18 Thread Becky Norum
-- Becky Norum [EMAIL PROTECTED] On Tue, 2003-02-18 at 19:23, Pani Ramasami wrote: Hi: The below line: return (mapping.getInputForward()); // (in the ActionClass) is not taking me back to the form specified in the input attribute of stuts-config.xml Iam using html:errors/ in my jsp

Tomcat 4.1.18 / nested tags

2003-02-11 Thread Becky Norum
informative posts! -- Becky Norum * [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]