• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

File Upload with MultipartRequest giving problem on Netscape6.1

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi there,
I am developing a fileupload application.I used the MultipartRequest class provided by O'Reilly.
Following was the form tag I used -->
<FORM name="fileUpload" action="fileUpload.jsp" method=post enctype="multipart/form-data">
On the fileUpload.jsp the MultipartRequest Constructor was called in the following way -->
MultipartRequest multi = new MultipartRequest(request, TEMP_DIR, remainingQuota);
Things are working fine when I access the application with either any IE browser or Netscape 6.2.But with Netscape 6.1 browser which is to be used by us officially following is the error being thrown in the readNextPart() method of the MultipartRequest class.
java.io.IOException: Malformed line after content type: Content-Transfer-Encoding: binary
I am not sure why this exception is coming only for the Netscape 6.1 version.If i have to do any browser settings or what?
If you can put your head into MultipartRequest class and the Browser settings you may understand the problem practically.
I need a very urgent solution on this.
Please do the needful,
Thanks,
Vikas
 
reply
    Bookmark Topic Watch Topic
  • New Topic