Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-08 Thread Dave Newton
On Sun, Sep 7, 2014 at 12:55 PM, Mark Thomas ma...@apache.org wrote: [...] banned from the Tomcat users mailing list [...] Is there official Apache precedence for this? I tried that on the S2 list and it didn't take. Dave

[OT] Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-08 Thread Mark Thomas
On 08/09/2014 18:06, Dave Newton wrote: On Sun, Sep 7, 2014 at 12:55 PM, Mark Thomas ma...@apache.org wrote: [...] banned from the Tomcat users mailing list [...] Is there official Apache precedence for this? I tried that on the S2 list and it didn't take. Technically, unsub them from

Re: [OT] Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-08 Thread Dave Newton
Ok, thanks--we'll see what happens. Dave On Mon, Sep 8, 2014 at 1:24 PM, Mark Thomas ma...@apache.org wrote: On 08/09/2014 18:06, Dave Newton wrote: On Sun, Sep 7, 2014 at 12:55 PM, Mark Thomas ma...@apache.org wrote: [...] banned from the Tomcat users mailing list [...] Is there

RE: [OT] Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-08 Thread Konrad Zuse
for their help in trying to help me with my issue, thank you guys for everything. Date: Mon, 8 Sep 2014 13:26:17 -0400 Subject: Re: [OT] Re: [fileupload] - Question about uploading additional files other than the ones in the form? From: davelnew...@gmail.com To: user@commons.apache.org Ok

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-07 Thread Martin Gainty
__ From: thekonradz...@hotmail.com To: user@commons.apache.org Subject: RE: [fileupload] - Question about uploading additional files other than the ones in the form? Date

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-07 Thread Konrad Zuse
. I appreciate all the answers that have been provided. Thank you for your time. From: mgai...@hotmail.com To: user@commons.apache.org Subject: RE: [fileupload] - Question about uploading additional files other than the ones in the form? Date: Sun, 7 Sep 2014 09:59:46 -0400

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-07 Thread Mark Thomas
@commons.apache.org Subject: RE: [fileupload] - Question about uploading additional files other than the ones in the form? Date: Sat, 6 Sep 2014 11:44:46 -0400 Morning Konradthe htp/file/ftpuploader will need to have apriori knowledge of both:location of Main distro usually 'baseDir' location

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Martin Gainty
Morning Konradthe htp/file/ftpuploader will need to have apriori knowledge of both:location of Main distro usually 'baseDir' location of ancillary files..pics, classes, sources, html,css This is the reason why you will never see an apache server provisioning individual files(except for

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
: [fileupload] - Question about uploading additional files other than the ones in the form? Date: Sat, 6 Sep 2014 11:44:46 -0400 Morning Konradthe htp/file/ftpuploader will need to have apriori knowledge of both:location of Main distro usually 'baseDir' location of ancillary files..pics, classes

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 12:29 PM, Konrad Zuse thekonradz...@hotmail.com wrote: So again, user selects file, I read file, then select other files from their system that are needed for the first file, and upload them all up at the same time. So other files like, say /etc/passwd? :-) Short

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Thad Humphries
FileUpload is pretty straight forward and the examples are clear. However it sound to me like you are describing a scenario like this: On Machine A, files foo, bar, baz, etc. and file FilesList.txt with the full paths for those files. On Server B: A web app with a form and your servlet. User at

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
has access to the user's machine, so I don't know why we couldn't have that same access, some way? Date: Sat, 6 Sep 2014 15:57:55 -0400 Subject: Re: [fileupload] - Question about uploading additional files other than the ones in the form? From: thad.humphr...@gmail.com To: user

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Bernd
that are needed for the first file, and upload them all up at the same time. Thanks! From: mgai...@hotmail.com To: user@commons.apache.org Subject: RE: [fileupload] - Question about uploading additional files other than the ones in the form? Date: Sat, 6 Sep 2014 11:44:46 -0400 Morning

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
Sep 2014 22:03:28 +0200 Subject: RE: [fileupload] - Question about uploading additional files other than the ones in the form? From: e...@zusammenkunft.net To: user@commons.apache.org For obvious security reasons browsers do not allow to open/access files without user selecting the files

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 1:09 PM, Konrad Zuse thekonradz...@hotmail.com wrote: So would I need to rewrite everything now for an client-side application, which I'm assuming wouldn't even work with FileUpload but more with FTP? Or would I still use my current upload methods, but had an

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
: [fileupload] - Question about uploading additional files other than the ones in the form? From: hassan.schroe...@gmail.com To: user@commons.apache.org On Sat, Sep 6, 2014 at 1:09 PM, Konrad Zuse thekonradz...@hotmail.com wrote: So would I need to rewrite everything now for an client-side

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 1:38 PM, Konrad Zuse thekonradz...@hotmail.com wrote: I can't use File Upload with a client-side application ont he desktop though right? Of course you can. Commons FileUpload is a server component to process multipart/form-data POST requests. There's no reason for it

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
about something, or confused about what something means. Thank youf or all of the help everyone :) Date: Sat, 6 Sep 2014 14:01:18 -0700 Subject: Re: [fileupload] - Question about uploading additional files other than the ones in the form? From: hassan.schroe...@gmail.com To: user

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 2:06 PM, Konrad Zuse thekonradz...@hotmail.com wrote: Okay so I generate the requests via my client to allow the upload of all of these files, but it has to be done from something on their machine though, and not a browser? Yes. Not too sure what you saying before

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
] - Question about uploading additional files other than the ones in the form? From: hassan.schroe...@gmail.com To: user@commons.apache.org On Sat, Sep 6, 2014 at 2:06 PM, Konrad Zuse thekonradz...@hotmail.com wrote: Okay so I generate the requests via my client to allow the upload of all

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 2:59 PM, Konrad Zuse thekonradz...@hotmail.com wrote: I understand the client-server relationship, but you seemed to say I could do what I need to do from my browser No. No. A thousand times, NO. You can't do what you want from a standard web browser. Whatever you think

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
want to keep running in circles and having tasks that I cannot complete :P. Date: Sat, 6 Sep 2014 15:42:03 -0700 Subject: Re: [fileupload] - Question about uploading additional files other than the ones in the form? From: hassan.schroe...@gmail.com To: user@commons.apache.org On Sat

Re: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Hassan Schroeder
On Sat, Sep 6, 2014 at 3:58 PM, Konrad Zuse thekonradz...@hotmail.com wrote: Yeah I understand I have to build it, was just curious if I would have limitations like I am having now. A desktop application does not have the sandboxing limitations of processes running in a Web browser. That

RE: [fileupload] - Question about uploading additional files other than the ones in the form?

2014-09-06 Thread Konrad Zuse
to my servlet to process and upload? Thanks for the help once again Hassan, I appreciate your time and patience with my and my questions. All the best. Date: Sat, 6 Sep 2014 16:10:10 -0700 Subject: Re: [fileupload] - Question about uploading additional files other than the ones in the form