Page 1 of 1

Load Balance App Launching from Single URL

Posted: Wed Sep 27, 2017 6:14 pm
by indyrhett
Hi,

I've been discussing with Support about the ability to use Load Balancing and launching a single exe from a URL command line with Web Credentials - without having to deal with a TSPlus login screen. (Our application currently uses a log-in screen so it's confusing to our users to have 2 log-in screens).

I understand this isn't currently possible but it would be a great enhancement for our end users.

Thanks,

Rhett Price
IndySoft

Re: Load Balance App Launching from Single URL

Posted: Fri Sep 29, 2017 5:27 am
by indyrhett
FYI, I was able to figure out a way to accomplish this with a URL - even though you still get the "flash" of the initial login screen. Simply put:

cplogon();

in the common.js file at the end of the processLoadBalancing() function.

This appears to do the trick however would still be nice for this to be an official option.

Thanks,

Rhett

Re: Load Balance App Launching from Single URL

Posted: Fri Nov 03, 2017 1:38 pm
by strajk
I replaced the index.html with a blank HTML that has a redirect in the meta tag with the login and password hardcoded into the meta redirect.
index.html:

Code: Select all

<!doctype html>
<html>
	<head>
		<meta http-equiv="refresh" content="0; url=/software/html5.html?user=WindowsUser&pwd=WindowsUserPassword"/>
	</head>
	<body/>
</html>
Should work with weblogin too.
It automatically starts our application since it's the only app we give all users availability.