Logon Ticket et Équilibrage de Charge
Logon Ticket creation on the Gateway Server
You can create a logon ticket on the gateway with:
/socket.io/LPW?WinUser=DOMAIN\LOGIN&WinPassword=PASSWORD
But it will only allow you to connect on the gateway server itself.
Creación de Ticket de Inicio de Sesión en un Servidor de Aplicaciones
You can also create a logon ticket on a reverse-proxified application server with:
/srv4/socket.io/LPW?WinUser=DOMAIN\LOGIN&WinPassword=PASSWORD
assuming ~~srv4 is the internal name of the application server as configured in TSplus reverse-proxy
But it will only allow you to connect on this specific application server.
Logon Ticket et Équilibrage de Charge
So if you want to use logon tickets and load-balancing, you might want to do an additional HTTP request first:
https://your-gateway-server.com/cgi-bin/hb.exe?action=lb&l=LOGIN&d=DOMAIN&t=TIMESTAMP
Esto devolverá una respuesta como esta.
loadbalancing-on|APP SERVER 4|your-gateway-server.com/~~srv4|https|443|
You can parse this answer to retrieve the application server on which TSplus Load-Balancer would recommend you to connect this specific user.
es decir, recomendará el servidor menos cargado en su granja de TSplus, si las sesiones persistentes están habilitadas en su puerta de enlace TSplus, tendrá en cuenta las sesiones activas existentes, etc.
You can then create a logon ticket on this specific application server and connect to the user to it.
This is precisely the http request done on TSplus Web Portal logon page.
Utilizando un Ticket de Inicio de Sesión para Abrir una Sesión de Usuario
Now that you have a valid logon ticket, you can open a user session using this ticket by opening a browser window to this URL:
https://your-gateway-server.com/~~srv4/software/html5.html?user=*xxxxxxxx
where “xxxxxxxx” is the logon ticket.