Page 1 of 1

URL behind button

Posted: Mon Nov 14, 2016 3:48 pm
by Alpin
Hello,

Is there a solution for a direct link to the application HTML5 without showing the application portal ?

E.G.: https://myServTSplus/software/MYSOFT/ht ... MYPASSWORD

Thank you in advance,

Best regards,

Re: URL behind button

Posted: Mon Nov 14, 2016 5:35 pm
by admin

Re: URL behind button

Posted: Tue Nov 15, 2016 11:30 am
by Alpin
Hello,
Thank you for your quick reply.

The solution works with a local account of the computer but not for an account of Active Directory.

E.G.: With local account in file: C:\Program Files (x86)\TSplus\Clients\www\software\html5\settings.js
W.user = "myLocalUser";
W.pass = "myLocalUserPassWD";
W.server = "";
and then restart webserver,
on http://myServer/software/html5.html the user desktop is not visible and my only one application published is lauching. A nice solution for me ! Thank you !

But with an AD Account:
W.user = myADAccount";
W.pass = "myADAccountPassWD";
W.domain = "myDOMAIN";
and then restart webserver,
on http://myServer/software/html5.html the user desktop is visible and my only one application published doesn't starting.
Is there an another variable to set ?

Re: URL behind button

Posted: Wed Nov 16, 2016 9:19 am
by Alpin
Hello,

Instead of have a hardocded the user in javascript file, is there a solution for giving the user and password in url:

Code: Select all

https://myServ/software/MYSOFT/html5.html?domain=MYDOMAIN?user=MYUSER?password?=MYPASSWORD

Re: URL behind button

Posted: Thu Nov 17, 2016 8:59 am
by adrien
Hello Alpin,

You can use specify some parameters in the URL, as explained on: http://www.terminalserviceplus.com/docs ... rl-address

It will still require your domain to be hardcoded in TSplus\Clients\www\software\html5\settings.js

Re: URL behind button

Posted: Tue Nov 29, 2016 8:57 am
by Alpin
Hello adrien,

This solution is not working...

I have tested your example with my credential:
http://www.terminalserviceplus.com/docs ... rl-address

http://your-server.com/software/html5.h ... otepad.exe

notepad.exe doesn't launch and all what I see is the user desktop. Could you verify ?

How launch application full screen with user desktop disabled with this solution ?

Thank you in advance,

Best regards,

Re: URL behind button

Posted: Fri Dec 02, 2016 8:39 pm
by adrien
Hello,

Try to add all the documented parameters.
I have tested it again right now with TSplus latest version, and this link is working fine:

http://your-server.com/software/html5.h ... 32&params=

Re: URL behind button

Posted: Wed Dec 07, 2016 8:26 am
by Alpin
Hello Adrien,

Thank you for your reply.

It's my bad :D
All query string parameters in url are mandatory even if they are empty. I misunderstood.
This works now with all parameters.

Thank you,

Best regards,