You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can someone help me to see why this jquery code can note create a session to the apache livy? I got these errors :
OPTIONS http://localhost:8998/ 405 (Method Not Allowed) and Failed to load http://localhost:8998/: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8084' is therefore not allowed access. The response had HTTP status code 405.
Good morning everyone,
can someone help me to see why this jquery code can note create a session to the apache livy? I got these errors :
OPTIONS http://localhost:8998/ 405 (Method Not Allowed) and Failed to load http://localhost:8998/: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8084' is therefore not allowed access. The response had HTTP status code 405.
This is the code I used :
`$.ajax({
type: 'POST',
contentType: "application/json; charset=utf-8",
dataType: 'json',
url: 'http://localhost:8998',
data: {kind: 'spark'},
success: function (resultat) {
document.getElementById(response).innerHTML = resultat;
console.log(resultat);
Thank you for your help
The text was updated successfully, but these errors were encountered: