Hello,
I've followed this guide:
https://docs.appdynamics.com/display/PRO40/Injection+Using+Apache
Seeing below in browser console:
XMLHttpRequest cannot load http://col.eum-appdynamics.com/eumcollector/beacons. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://apache01.my.lan' is therefore not allowed access.
Hi Luis,
Can you see if this is related to CORS problem ? As per past history on this error , The error indicates that your page or api is not allowing this cross domain access. , The resolution is to allow you pages to use CORS, by adding this header 'Access-Control-Allow-Origin: *' or similar. Check if that information helps.
Regards,
Arun
Have the followin on the Apache proxy:
Header always set Access-Control-Allow-Origin "*"
Header always set Access-Control-Max-Age "1000"
Header always set Access-Control-Allow-Headers "X-Requested-With, Content-Type,$
Header always set Access-Control-Allow-Methods "POST, GET, OPTIONS, DELETE, PUT"
This request goes out to AppDynamics and the browser appears to be blocking it.
If I run Chrome with --disable-web-security there is no error.
An old browser like IE7 also seems to be POSTing without issue.