I\'m facing a problem to get return value (content-type: \"text/xml\"). I\'m able to get return value by direct access this URL:
https://[domain_name]/myfolder
To simplify, I would do the following
Lets assume you are using a php script called script.php.
var xml_string = ""; $.get('script.php', {xml: xml_string}, function(){ //your success function alert('success'); }).error(function(){ //your error function alert("error"); });