Load Balance App Launching from Single URL

Help us improve our product. Feature requests are welcomed!
Post Reply
indyrhett
Posts: 43
Joined: Wed Aug 02, 2017 10:56 pm

Load Balance App Launching from Single URL

Post by indyrhett » Wed Sep 27, 2017 6:14 pm

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

indyrhett
Posts: 43
Joined: Wed Aug 02, 2017 10:56 pm

Re: Load Balance App Launching from Single URL

Post by indyrhett » Fri Sep 29, 2017 5:27 am

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

strajk
Posts: 13
Joined: Wed Apr 12, 2017 1:00 pm

Re: Load Balance App Launching from Single URL

Post by strajk » Fri Nov 03, 2017 1:38 pm

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.

Post Reply