I think you have the terminology mixed up. I believe you mean a Sun Ray Kiosk provider instead of uttsc. Doc is a little weak here, so totally understand. uttsc is the name of the Sun Ray RDP client binary (and technically the shell script used to call the binary as well as the kiosk session descriptor.

VDA_SSO_AWARE has to be set to true in the kiosk session descriptor, if using the provided Sun Ray Connector kiosk session, the session descriptor is /etc/opt/SUNWkio/sessions/uttsc.conf. However, you should really copy and rename uttsc.conf (and most likely the directory /etc/opt/SUNWkio/sessions/uttsc) and make your edits there. Make sure your session descriptor points to the copied directory.

You need to add the the line VDA_SSO_AWARE=true to that file.

From there, you'd need to augment the copied kiosk script to pass the following args -u $VDA_USER -d $VDA_DOMAIN -i or you could pass it through the pool settings for the pool that you made with Sun Ray Kiosk Desktop provider.

The -i is so uttsc can read the password from STDIN.

Now, you actually have to edit the copied uttsc kiosk script so that it passes the password.

At the end of the day, your copied kiosk script would look something like this (if just editing the script) where the uttsc binary gets called.

Old:
$theUTTSCExec $theUTTSCDefaultArgs "$@" 2>&1 ||

New
:
read thePassword
echo $thePassword | $theUTTSCExec -u "$VDA_USER" -d "$VDA_DOMAIN" -i $theUTTSCDefaultArgs "$@" 2>&1 ||



On 6/12/12 11:59 PM, Jeremy Stagg wrote:
Hi Guys
Have a test VDI 3.4 server with two desktop provider configs:
(a) uttsc with Sun Ray Connector for Windows OS
(b) Microsoft Remote Desktop Provider (MS_RDP)
Observations:
- Both point to the same Terminal Server (Win 2K8 R2)
- uttsc is using the default with the IP address of the server only
(have tried more complex configs with same result, including setting
VDA_SSO_AWARE = $TRUE).
- User authentication passthru works with the MS_RDP and not uttsc.
- do not want to modify vda and kioskparam scripts, but think may have to
Result:
Cannot deliver user authenticated single app from TS farm for project.
Questions:
(1) Does the vda script variable VDA_SSO_AWARE get triggered always with
uttsc desktop providers ?
(2) How to get the user authentication passthru working with the uttsc
session pointing to a terminal server ?
We have an ultimate aim of delivering a single application (use -a with
uttsc) to a few thousand users.
Hence the urgency of the request for information.
Any feedback greatly appreciated.
Regards
Jeremy.

*ORACLE**** *HEWLETT PACKARD**** *IBM* *** *CITRIX**** *NOVELL*
*VDI**** *Networks**** *Servers**** *Storage**** *Virtualisation****
*Desktops**** *Thin Clients*
/Services for Multi-OS Support (Solaris, Linux, Apple, NetWare, and Windows)
Training, Administration, Project Management and Consultancy
Services Contracts to Suit /*www.networkhelp.com.au *
<http://www.networkhelp.com.au>


_______________________________________________
SunRay-Users mailing list
[email protected]
http://www.filibeto.org/mailman/listinfo/sunray-users
_______________________________________________
SunRay-Users mailing list
[email protected]
http://www.filibeto.org/mailman/listinfo/sunray-users

Reply via email to