Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Limitations AJAX get


  • From: mdougherty at pbp.com (Mike Dougherty)
  • Subject: [Javascript] Limitations AJAX get
  • Date: Sun Aug 27 06:16:45 2006

yes - 2K

If you are even considering this limitation, you probably should be using a post. :)

We send objects back to the webservice by serializing them to JSON strings, posting them via XHR 
then deserializing them via eval() and use server-side jscript on the object.  Be sure to properly 
encodeURIComponent the form data.

On Sat, 26 Aug 2006 15:17:10 +0700
  "Peter Lauri" <lists@xxxxxxxxxxx> wrote:
> Hi,
> 
> Are there any limitations in how much data one could send using an
> XMLHttpRequest with the get method?