change in cors policy
Posted: Thu Jan 27, 2022 3:57 am
The implementation of CORS-RFC1918, has broken the way our app is working.
For reasons we cannot change we launch our legacy software by sending a message to a locahost server. This is software that we use in our business and is not software that runs on peoples private computers.
If I set the following back to disable in Chrome then our system works.
chrome://flags/#block-insecure-private-network-requests
However, I don't know how to make that work in CEF -
I tried that but it didn't work - I am hoping someone can help otherwise I am not sure what other options we have other can going back to much older CEF build.
For reasons we cannot change we launch our legacy software by sending a message to a locahost server. This is software that we use in our business and is not software that runs on peoples private computers.
If I set the following back to disable in Chrome then our system works.
chrome://flags/#block-insecure-private-network-requests
However, I don't know how to make that work in CEF -
Code: Select all
GlobalCEFApp := TCefApplication.Create;
GlobalCEFApp.DisableWebSecurity := true;