Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

webinterface 4.0

Status
Not open for further replies.

19972003

MIS
Feb 16, 2007
205
US
How can I change the computer login name as the user via web interface logon? right now, if I check the login name, it shows "WI_qtkgyckxxxxx"

TIA
 
You can serach around for Win32CName4.zip.

And install it on your server.

I don't know how to upload the file on this reply.

It will then show the terminal name not the web client name.

Enjoy.
 
i found that by using String clientName = MPSClientNames.fromAccessToken( accessToken ); in the Client Name section of session.cs instead of all the other text that comes by default, it displayed the DOMAIN-UserId for me.
 
something else that might help, and something i found and posted on brianmadden.com:

i found the following posting on mycitrix: ( Thanks to David Constantino for posting that. i used it in my Test and & Prod environments and it seems to be working - returning the user's COMPUTERNAME instead of a blank entry in the WI ClientName column. here's a section of David's suggestion:

I have been able to reporduce it.The problem only appears with publish applications and not a published desktop. The problem appears to be in the new lock down features of the 10.0 client. We are looking at the code to see how it will need to be fixed.
Another customer found a workaround for us I am poting it here.
On the web server hosting Web Interface go to following location on the web site

C:\Inetpub\ look for a file called launch.cs

In the file locate a line of code Response.BinaryWrite( responseEncoding.GetBytes( icaFile.ToString() ) );
Replace it with this
Response.BinaryWrite( responseEncoding.GetBytes( icaFile.ToString().Replace("ClientName=",";ClientName=") ) );
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top