• 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

Buffer Size in Explorer 5.0

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm having some issues with IE; I'm constructing a pretty large response and submitting it to another jsp to store that my data in to an Access Database. Well, in Netscape everything works fine but when submitted with IE the last half of the values are lost and committed to the database as "null" values.
I'm assuming I am hitting some buffer size limit for IE but I tried using a directive to increase the buffer size, but no luck.
If someone could help I would be very grateful
Thank You
-Kevin
 
Rancher
Posts: 13459
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OK, I'll have a go at this.
Firstly, the buffer directive exists at the server side and I don't believe it has anything to do with your problem.
My guess is that you are using HTTP GET to send data from the client to the server. There is an upper limit to the amount of data that can be sent this way, but the actual value depends on too many things (browsers, proxies, app and web servers etc). A basic rule is (from memory) 256 chars, as specified in RFC 2616.
Have you tried to use POST rather than GET? The size allowed is theoretically unbounded. (sometimes limitted by servers to a meg or two)
Dave
 
Author
Posts: 245
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can I also suggest that you break up your form into a wizard style thing so that if that the user feels like they are getting somewhere rather than spending 14 hours filling the form in and then finding the session is lost or they are called away and the information is lost, etc
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic