Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

How to enable SOAP request from javascript?

  • 3 Antworten
  • 3 haben dieses Problem
  • 17 Aufrufe
  • Letzte Antwort von Mahdi Dibaiee

more options

i am developing a simple script for accessing a web-service. I do a request from my javascript, but firefox blocks this request and in console writes "Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.guru4.net/articoli/javascript-soap-client/demo/webservicedemo.asmx?wsdl. This can be fixed by moving the resource to the same domain or enabling CORS." How to enable this damn CORS in firefox?

i am developing a simple script for accessing a web-service. I do a request from my javascript, but firefox blocks this request and in console writes "Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://www.guru4.net/articoli/javascript-soap-client/demo/webservicedemo.asmx?wsdl. This can be fixed by moving the resource to the same domain or enabling CORS." How to enable this damn CORS in firefox?

Geändert am von NoahSUMO

Alle Antworten (3)

more options

It's not about enabling CORS in Firefox, relax.

CORS must be enabled at the server-side, this is an error for security, Every browser throws this error.

In order to activate CORS in your server you must send these headers:

    Access-Control-Allow-Origin: <yourUrlToAllowAccess>

More about this at MDN

+ Please test your code on other browsers before acting like this, if it's the same across browsers, stackoverflow is the place to ask your question.

Geändert am von Mahdi Dibaiee

more options

hmmm, does it mean that my client is forbiddent to access this server? I am not related to this server and cannot to reconfigurate it. I can access this web-service http://www.guru4.net/articoli/javascript-soap-client/demo/webservicedemo.asmx?wsdl using wsdl-browser http://wsdlbrowser.com/, but it doesn't work when I invoke this service from my javascript-code

more options

Yes, the server has disabled CORS, that's why you can't access it using JavaScript. You can open it with any browser, but you can't access it from another origin ( i.e. your website )

Geändert am von Mahdi Dibaiee