0

After Number of hits on application, I m getting error "failed to execute 'send' on Xmlhttprequest" on chrome browser and "operation has timed out " in application log .

Thanks in advance

saurabh
  • 29
  • 6
  • Check this: http://stackoverflow.com/questions/38640140/domexception-failed-to-execute-send-on-xmlhttprequest-on-chrome-only – Lluís Suñol Jul 28 '16 at 15:15

1 Answers1

0

Sounds like a Cross Origin Resource Sharing (CORS) issue to me. You'll need to set your headers on your SERVER side code to accept your application requests:

"Access-Control-Allow-Origin:", "origin url of your site"; "Access-Control-Allow-Methods", "GET, POST,PUT"

Full docs about CORS headers here https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Origin

harkl
  • 872
  • 7
  • 17