Estoy intentando haciendo un envio a una url aspx y esta me devuelve un mensaje ( exito o error ), este envio lo hago a traves de ajax pero a la hora de revisar el callback este esta vacio o sea como q no devuelve nada, aunke el aspx se ejecuta.
el aspx al q envio esta alojado en otro servidor no en el mio, sera algun problema de crossdomain como en flash?
este es mi codigo:
Código Javascript :
function getXMLHttp() {
var xmlHttp
try{
xmlHttp = new XMLHttpRequest();
}
catch(e){
//Internet Explorer
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e){
try {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e) {
alert("Your browser does not support AJAX!")
return false;
}
}
}
return xmlHttp;
}
function Checkin() {
var xmlHttp = getXMLHttp();
xmlHttp.onreadystatechange = function() {
if(xmlHttp.readyState == 4) {
alert("responseText: " + xmlHttp.responseText);
}
}
xmlHttp.open("GET", "http://www.clicksms.com.ar/api.aspx?action=send", true);
xmlHttp.send(null);
}
