• 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

Requset entity too large message

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Actually I am sending a request object which has got around 500 data records and my aim is to diplay all those records in an excel sheet.Sometimes when the records are in the range of 300 - 400 I am able to generate the excel but when the count is more than 500
it is showing an error in the browser saying:-
Request entity too large

The request resource
/abcwas/ControllerServlet
does not allow request data with post requests, or the amount of data provided in the request exceeds the capacity limit.

How to circumvent this situation?

Thanks
 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think that you should change the max_packet_size configuration in the connector settings of your server.
 
reply
    Bookmark Topic Watch Topic
  • New Topic