Hello.

I am creating an ajax call to an embperl script and I need assistance in getting the script to work with json data sent with "application/json"

It works when I send data via javascript with:
request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  request.send(encodeURLQueryString(data));

It doesn't work when I send data via javascript with:
  request.setRequestHeader("Content-Type", "application/json");
  request.send(JSON.stringify(data));


My submit form looks like this:

submit.epl
[-
use JSON; # imports encode_json, decode_json, to_json and from_json.

$fdat{test}  = "test";
$json        = encode_json(\%fdat);

$escmode = 0;
$http_headers_out{'Content-Type'} = "application/json; charset=utf-8";
print OUT $json;
-]


Thank You,
~Donavon

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscr...@perl.apache.org
For additional commands, e-mail: embperl-h...@perl.apache.org

Reply via email to