[jQuery] AJAX POST causing 500 unimplemented method
I am using an AJAX POST, i.e.:
$.ajax({
url: serviceUrl,
async: false,
data: params,
type: "POST",
dataType: "xml",
//more code here...
});
But in the browser, I see that instead of a "POST" I see an "OPTIONS" as
well as a "500 unimplemented method."
Any idea what that "OPTIONS" and "500 unimplemented method" mean?
--
View this message in context: http://old.nabble.com/AJAX-POST-causing-500-unimplemented-method-tp26164396s27240p26164396.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.