Re: [Commons-FileUpload]problem with file upload over https using common fileupload

2005-08-12 Thread Laurie Harper
Do you get the same problem submitting over http instead of https? If so, you can use a packet sniffer to see what's actually being submitted to figure out what IE's doing wrong. Otherwise you could try writing a filter to dump the raw request (the filter would need to keep a copy of the reques

Re: [Commons-FileUpload]problem with file upload over https using common fileupload

2005-08-12 Thread temp temp
Yes I have multipart/form-data in my jsp . --- Laurie Harper <[EMAIL PROTECTED]> wrote: > What does your tag look like? Are you sure > you've specified > method="POST" and enctype="multipart/form-data"? > > L. > > temp temp wrote: > > > > > > > > > > >I am using jakarta commo

Re: [Commons-FileUpload]problem with file upload over https using common fileupload

2005-08-12 Thread Laurie Harper
What does your tag look like? Are you sure you've specified method="POST" and enctype="multipart/form-data"? L. temp temp wrote: I am using jakarta commons fileupload to upload a file . It worked fine with Internet explorer and netscape navigator with http protocol. I configured