Hey everyone,
I am making a POST to a webservice that is local to the webserver. Everything works great until I host the site at my SSL enabled webserver. The webservice path is relative, meaning, I am making no reference to the protocol. eg. /webservices/method.asmx
The POST results in a runtime error. Has anyone seen this before?
$.ajax({
type: "POST",
url: theURL+"/"+method,
data: body,
success: function(msg) {
alert("Data Saved: " + msg);
},
error:function(msg){
alert("Broken: " + theURL + "/" + method + msg.responseText);
}
});