Hello.
We have come accross with a bug when we have tried to go by https instead http.
When we conect to a single application. i.e. appweb
http://app.orgnization.org/appweb + intro
it opens the application and goes to
app.orgnization.org/appweb/multi_browser_index.htm
But when we try
https://app.orgnization.org/appweb + intro
it opens the application and goes to
https://app.orgnization.org/appweb/multi_browser_indexs.htm
and the app goes to blank.
Several internet searches and Appeon online helps happened, before we realized the final "s" in multi_browser_indexs
Workarround:
Put from the beginning not
https://app.orgnization.org/appweb + intro
but
https://app.orgnization.org/appweb/multi_browser_index.htm
Problem:
Since we send to our users a single link, now we have to specify that if the are using Edge or chrome this link or iexplorer, this another one.
regads
Juan Pedro.
If we change multi_browser_indexs.htm by multi_browser_index.htm it seems to work properly...
we put
var strHref = window.location.href;
if(0 == strHref.indexOf("https"))
{
// open multi_browser_index.htm
}
else
{
// open "multi_browser_index.htm"
}