R
rsankar
Guest
The blocking is done by the browser. The issue is that the client code in javascript is making a AJAX call to the backend with HTTP(insecure) while the page itself is loaded with HTTPS(secure). Please modify the client app to use HTTPS. Note that even after changing to HTTPS, browser will also block requests to other domain because of CORS (Cross origin Request Sharing). Make sure the PASOE is served (can be through a HTTP proxy) from the same subdomain (ciatec.info) or enable CORS headers in PASOE. Hope this helps. Thanks, Ravi
Continue reading...
Continue reading...