• 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

Upload problem using MultiPartRequest

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I use MultiPartRequest to upload csv file, upload is ok when the size of the file is less than 15ko, but when I try to upload a file more than 15ko I have an Error 500, Error in server external filter.
 
author
Posts: 621
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you using the O'Rielly package or custom code? If you're using the latter, I believe that there is a default limit specified in the source (if you don't create a new request with arguments indicating otherwise). Otherwise, it could be a server config that prevents really large uploads (a security features preventing denial of service attacks). The only other thing that comes to mind is that the server/servlet may be busy uploading data when the browser/serlvet tries to redirect. Therefore, the request is delayed and the browser times out. This is a bit of a long shot, though, and I'd look into the others first. Hope this helps.
Sean
 
See ya later boys, I think I'm in love. Oh wait, she's just a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic