Re: uploading file requires immediate serialization location?

2001-06-11 Thread Martin Cooper
in it. - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Jonathan Asbell [EMAIL PROTECTED] Sent: Monday, June 11, 2001 1:55 AM Subject: Re: uploading file requires immediate serialization location? String parameters are not written to a file. Only the bodies

Re: uploading file requires immediate serialization location?

2001-06-11 Thread dhay
Cooper [EMAIL PROTECTED] on 06/11/2001 01:55:07 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED], Jonathan Asbell [EMAIL PROTECTED] cc:(bcc: David Hay/Lex/Lexmark) Subject: Re: uploading file requires immediate serialization location? String parameters are not written

Re: uploading file requires immediate serialization location?

2001-06-11 Thread Martin Cooper
: David Hay/Lex/Lexmark) Subject: Re: uploading file requires immediate serialization location? String parameters are not written to a file. Only the bodies of file upload parts are written to disk, and each one to a separate file. The files are written as the input stream (i.e. the request

RE: uploading file requires immediate serialization location?

2001-06-11 Thread SCHACHTER,MICHAEL (HP-NewJersey,ex2)
. -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Monday, June 11, 2001 5:45 PM To: [EMAIL PROTECTED] Subject: Re: uploading file requires immediate serialization location? I don't know what would happen. In particular, I don't know what the browser would submit

Re: uploading file requires immediate serialization location?

2001-06-10 Thread Martin Cooper
[EMAIL PROTECTED] Sent: Sunday, June 10, 2001 5:47 AM Subject: Re: uploading file requires immediate serialization location? Great explanation Martin. Thank you. So what you really have said is that the stream contents gets turned into a FormFile object. Ok. Now the big question. You know

Re: uploading file requires immediate serialization location?

2001-06-10 Thread Jonathan Asbell
:01 PM Subject: Re: uploading file requires immediate serialization location? Good question. What you are really asking is what does the html:file tag do?. Struts will generate an input type=file ... tag, where the value of the 'name' attribute is taken from the 'property' attribute of your

Re: uploading file requires immediate serialization location?

2001-06-10 Thread Jonathan Asbell
PROTECTED] Sent: Monday, June 11, 2001 1:23 AM Subject: Re: uploading file requires immediate serialization location? Yes, I think you've got it. Just to be clear, though, when you say we need to examine the sections in the header ..., the we here is Struts - you don't need to do anything in your

Re: uploading file requires immediate serialization location?

2001-06-10 Thread Martin Cooper
Cooper - Original Message - From: Jonathan Asbell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 10:48 PM Subject: Re: uploading file requires immediate serialization location? So do you simultaneously write to a file while reading a String parameter when you

Re: uploading file requires immediate serialization location?

2001-06-10 Thread Jonathan Asbell
Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Jonathan Asbell [EMAIL PROTECTED] Sent: Monday, June 11, 2001 1:55 AM Subject: Re: uploading file requires immediate serialization location? String parameters are not written to a file. Only the bodies of file upload parts

Re: uploading file requires immediate serialization location?

2001-06-09 Thread Martin Cooper
Internally to Struts, multipart handling is provided through an interface, MultipartRequestHandler. In Struts 1.0, the only supplied implementation of this interface is DiskMultipartRequestHandler, which, as you might expect, writes file parts to disk as it encounters them. Struts does allow you

Re: uploading file requires immediate serialization location?

2001-06-09 Thread Jonathan Asbell
the ActionForm save (and validate) the binary data sent via input type file. - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Jonathan Asbell [EMAIL PROTECTED] Sent: Saturday, June 09, 2001 10:55 PM Subject: Re: uploading file requires immediate serialization location

Re: uploading file requires immediate serialization location?

2001-06-09 Thread Martin Cooper
file requires immediate serialization location? Internally to Struts, multipart handling is provided through an interface, MultipartRequestHandler. In Struts 1.0, the only supplied implementation of this interface is DiskMultipartRequestHandler, which, as you might expect, writes file