We started seeing a problem today for web clients logging in with Chrome to Servoy 5.2.16
We think the problem started with the recent Chrome Update Version 30.0.1599.69, at least on a Mac, but haven’t confirmed this.
The issue is the secure login screen doesn’t load, just get Loading… in the top left corner.
With Firefox, Safari, IE, login works fine.
We always put an Apache server in front of Servoy for deployment to handle all the security stuff. Then never any complaints with iframes and other resources potentially connecting with different protocols.
Oh, just looked at your code closer and…frame?! In HTML5 the frame tag is gone. Just like the blink tag Maybe latest chrome is HTML5 only? Or has a strict mode setting on my default?
chrome changed the way that http and https works
You can’t mix them anymore it think
For example if your main page is in https then http calls to sites in that page are blocked.
jcompagner:
chrome changed the way that http and https works
You can’t mix them anymore it think
For example if your main page is in https then http calls to sites in that page are blocked.
Thanks Johan, that certainly fits the issue, the login page is https. Can you let me know, which of the redirects are a result of Servoy’s inner workings, and are they configurable?
i think you have in your code somehow a redirect (in html/inline frame or js) that redirects to a none https url.
Because we don’t use full urls (stripping of http(s)) inside servoy itself. All the urls are relative.