RE: Does a degree matter?

2003-04-02 Thread Eva Sager
This brings up a good point... if all you get out of a degree is learning specific technology... in a fast changing world you might get left behind. If you learn how to learn technology... if you learn another way of thinking... then you just might have something. My degree is in Computer

RE: [Eva Sager] RE: Does a degree matter?

2003-04-02 Thread Eva Sager
of work. At the time it seemed like the best option, and if I had to do it all over again, I would do it in a heart beat. -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 12:25 PM To: Struts Users Mailing List Subject: [Eva Sager] RE: Does

RE: [OT] Contract Work: Going Rate?

2003-03-28 Thread Eva Sager
Atlanta's job market sucks... most of the jobs listed on Monster and other such boards have been there for ages, they aren't filled because the employer isn't filling them, not due to a lack of qualified developers. I know many extremely qualified developers who either aren't working or are

RE: How to upload multiple files??

2003-03-28 Thread Eva Sager
If they can upload the files one at a time, you can use a FormFile[]. That is what I did... and I made and interface so that the user can add and remove files from the array as they wanted. -Original Message- From: Jagadeesan,Sivakumar [mailto:[EMAIL PROTECTED] Sent: Thursday, March 27,

RE: How to upload multiple files??

2003-03-28 Thread Eva Sager
I don't have access to the code right now... but what I did was in my form object I had a single FormFile which handled each individual upload, then when they hit the import button I put that Formfile into a list of FormFiles. On the gui, I displayed the list of FormFiles and I maintained the

RE: How to upload multiple files??

2003-03-28 Thread Eva Sager
technology ( Java or JavaScript) I should be doing these process. NOTE: This page is one of the pages in a wizard Rgds, --Siva Jagadeesan -Original Message- From: Eva Sager [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 1:37 PM To: 'Struts Users Mailing List' Subject: RE: How to upload

RE: Logic tags and collections?

2003-03-12 Thread Eva Sager
I think he meant http://sourceforge.net/projects/struts-menu -Original Message- From: niksa_os [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 6:13 AM To: Struts Users Mailing List Subject: Re: Logic tags and collections? Try struts menu

RE: Problems with FormFile.getInputStream()

2003-03-06 Thread Eva Sager
Any Suggestions??? -Original Message- From: Eva Sager [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 10:33 AM To: 'Struts Users Mailing List' Subject: RE: Problems with FormFile.getInputStream() I tried it, with no success... I am not having any trouble creating

RE: Problems with FormFile.getInputStream()

2003-03-06 Thread Eva Sager
: Thursday, March 06, 2003 1:49 PM To: Struts Users Mailing List Subject: Re: Problems with FormFile.getInputStream() On Thu, 6 Mar 2003 13:20:08 -0500 Eva Sager [EMAIL PROTECTED] wrote: The file that ends up being attached is the correct file, it is just that the top portion of it is cut off

Problems with FormFile.getInputStream()

2003-03-05 Thread Eva Sager
I am using a file tag to upload a file and that seems to be working fine. I then want to email that file as an attachment and that is where I start to run into trouble. I am then trying to make a MimeBodyPart with the InputStream of the FormFile and the resulting file isn't complete. It is as

RE: Problems with FormFile.getInputStream()

2003-03-05 Thread Eva Sager
MimeMultipart multiple = new MimeMultipart(); multiple.addBodyPart(Text); multiple.addBodyPart(Bin); mensaje.setContent(multiple); -- Alexandre Jaquet - Original Message - From: Eva Sager [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Sent: Wednesday