How to get SRWC Lock Screen Utility to work with VDI 3.2

I have installed VDI 3.2 in demo mode, PCSC-lite 1.3, and also installed the SRWC-Lockscreen-0.3 package. I have setup the Sun Ray to only use smart cards. I have a virtual Windows 2003 Server terminal server offered by VMware, setup in the Microsoft Remote Desktop desktop provider. After installing the SRWC-Lockscreen utility by issuing the ./install.sh script with no errors, I insert a smart card and log in to the 2003 terminal server with no problems. Although, when I remove the smart card and re-insert it, the session is not locked.
Is there anything else to run or check to get this function to work? The README with the Lockscreen utility states where the files are installed and I have verified these locations.
What am I doing wrong?
Thanks!

Yes, ran the script to install.
There is a link for "/usr/dt/config/Xsession.d/1200.WinLock" pointing to "/opt/SRSS-Addons/WinLock/1200.WinLock"
But after I start a session, I do not see the utaction that calls the xvkbd process. I see other utactions as follows:
(run as utku0) /opt/SUNWut/bin/utaction -t 300 -d /opt/SUNWvda/lib/vda-client -a cardRemoved -
(run as root) /opt/SUNWut/bin/utaction -t 12000 -i -e -d /opt/SUNWkio/bin/kioskrestart || /op
(run as utku0) /opt/SUNWut/bin/utaction -d /etc/opt/SUNWkio/sessions/vda/vda-cardremoved
(run as root) /opt/SUNWut/bin/utaction -x /usr/lib/smartcard/pcscd -k -x :9 -P 3786
Thanks!

Similar Messages

  • How to get Camera RAW / Photoshop CS5 to work with Canon 100D?

    How to get Camera RAW / Photoshop CS5 to work with Canon 100D? I don't want to by this product again and again...

    In what way is ACR not working in Bridge?  Is there no right-click Open in Camera Raw available from Bridge, or there is, but the ACR version is less than ACR 6.7.1 or what exactly is the issue? 
    Also, if you open Photoshop and do Help / About Plug-ins / Camera Raw, is ACR missing from the list, or if not, what version does it say is installed?
    You might also want to describe what methods you have tried to correct the issue, since saying you've tried what you've seen posted and they didn't work, isn't really much to go on.

  • Music buttons on the lock screen no longer work with ios7.

    on my 4S, when ios 7 was loaded, bluetooth music play buttons and the music buttons on the lock screen no longer work.  Hence, I can neither use the music buttons at the lock screen nor can I use the control on my car (bluetooth...) to change songs.  Volume adjust at the lock screen appears to work.  Can't pause/play or move to the next/prior music.

    I did see a reply on a similar post:
    You can try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    However, some onther users have reported the same problem so it it may be a bug in iOS
    I did the RESET DEVICE only to mine (i.e., did not reset all settings...) and it did work to fix the buttons (haven't tested on the car, but it'll likely be OK now...).  Certainly there is a bug somewhere that needs fixed...

  • How to get my iPod Classic 160 to work with my blu ray disc player

    How do I get my iPod Classic 160 to work with my blu ray disc player?

    Whats the model of the blu ray player?
    I'm assuming you would have to to buy a dock or AV cables that connects to ipod and correspond with the model of player.

  • How to get JDev 10.1.2/ADF working with MS SQL Server Identity Column

    Hello JDevTeam & JDevelopers,
    I want to use JDev/ADF with a MS SQL Server 2005 database that contains tables employing IDENTITY Columns.
    Using JDev/ADF and DBSequence with an Oracle database employing before triggers/sequences accomplishes what I am trying to do except I want to accomplish the same thing using a MSSQL Server 2005 database. Unfortunately I cannot change the database.
    I have been able to select records but I am unable to insert records (due to my lack of knowledge) when using MS/SQL Server Identity Columns with JDev/ADF.
    The following are the steps taken thus far.
    Step1: Create table named test in the 2005 MSSQL Server (see script below).
    Step2: Register 3rd Party JDBC Driver with JDeveloper; Using use Tools/Manage Libraries. Create a new entry in User Libraries with the following;
         Library Name     = Ms2005Jdbc
         Class Path     = C:\dev\Ms2005Jdbc\sqljdbc_1.0\enu\sqljdbc.jar
         (note: Latest TYPE 4 JDBC driver for Microsoft SQL Server 2005 - free at http://msdn.microsoft.com/data/ref/jdbc/)
    Step3:Create New Database Connection;
         Connection Name = testconn1
         Type = Third Party JDBC Driver
         Authentication Username = sa, Password = password, Check Deploy Password
         Connection
              Driver Class = com.microsoft.sqlserver.jdbc.SQLServerDriver     
              Library = Ms2005Jdbc     
              Classpath = C:\dev\Ms2005Jdbc\sqljdbc_1.0\enu
              URL = jdbc:sqlserver://192.168.1.151:1433;instanceName=sqlexpress;databaseName=test
         Test Connection = Success!
    Step5: Create a new application workspace using Web Application default template
    Step6: In Model project, Create new Business Components Diagram.
    Step7: Create new Entity Object. Goto to connections/testconn1, open tables and drag table test onto the diagram.
    Step8: Generate Default Data Model Components by right-clicking on Entity Object. Except all the defaults.
    When I test the Appmodule I select the view object and can scroll through all the records without error. If I try to insert a record, I get JBO-27014: Attribute testid in test is required.
    Going back to the EntityObject I deselect the Mandatory attribute and re-run the test. Now when I try to insert it accepts the value for testname but it does not update the PK testid like it would using an "JDev/ADF/DBSequence/Oracle database/before trigger/sequence" solution.
    Going back to the EntityObject and selecting refresh on insert does not solve this problem either. Changing the URL connection string and adding "SelectMethod=cursor" did not help and changing the SQl Flavor to SQLServer produced errors in the Business Components Browser. I've tried overriding isAttributeChanged() and other things as well.
    I am totally stuck! Can anyone provide a solution?
    Thanks for you help,
    BG...
    Create table named test
    use [testdb]
    go
    set ansi_nulls on
    go
    set quoted_identifier on
    go
    create table [test](
         [testid] [int] identity(0,1) not null,
         [testname] [nvarchar](50) collate sql_latin1_general_cp1_ci_as not null,
    constraint [pk_test] primary key nonclustered
         [testid] asc
    )with (pad_index = off, ignore_dup_key = off) on [primary]
    ) on [primary]

    Figured it out!
    When using the MS SQL Server 2000 Database with the MS JDBC 2000 Driver you specify the SQL Flavor to SQLServer. However setting the SQL Flavor to SQLServer with MS SQL Server 2005 Database and the MS JDBC 2005 Driver will *** fail ***.
    When working with the MS SQL Server 2005 Database and the MS JDBC 2005 Driver you set the SQL Flavor to SQL92 and the Type Map to Java.
    If using a named instance like I am you would specify the URL = jdbc:sqlserver://<db host ip address>:<listening port>;instanceName=<your instance name>;selectMethod=cursor;databaseName=<your database name> (note: leave out the < >)
    The 2005 Driver Class is different then the 2000 and is specified as com.microsoft.sqlserver.jdbc.SQLServerDriver
    Note: In a default MS SQL Server 2005 installation the listening port will change *** everytime *** the host is restarted! You can override this though.
    For the primary key you need to deselect the Mandatory attribute in the EntityObject editor.
    Set Refresh on insert/update = no.
    Set Updateable = never.
    Now my Primary Keys which get their values from the Identity Column are working with ADF in a predictable way.
    Simple enough but I have been away from this stuff for awhile.
    BG...

  • How To Get Ipod Touch 2nd Gen to work with 64 bit Vista / Vista Ultimate

    Okay, so I just got me a 2nd Gen Ipod Touch for X-Mas..I decided to take a break and get this puppy installed on my HP Tablet. Like many of you, I struggled in frustrations. I hate Apple Support. Notice their method to resolve all of their issues in regards to Itunes not working or Touch not working is to just REINSTALL ITUNES....doesnt solve anything. I have a solution.
    For many of you, this may work, for those that are experiencing the same problem, please read below.
    What I am using:
    HP Tablet TX1000
    Platform: Windows Vista - Ultimate 64 Bit.
    I downloaded the 64 bit version of Itunes 8.02...hoping the thing will work, and still after plugging in my brand new ipod... i get an error message saying.
    "The IPOD you are using is not recognized by this version of Itunes, please delete and reinstall with 64 bit version of Itunes."
    However I did install the 64 bit version of ITUNES on my Vista. Before you guys delete and reinstall again. Do this first to confirm that my solution will help.
    Open up Itunes, go to help, click on Run Diagnostics. Select only, Ipod/Iphone Connectivity tests and hit next.
    If your Apple Mobile Device Service is RED, it means its not installed or not activated. Please read apple forums for the reactivation of AMDS. *If you are like me and did that help, and realized its not installed,* something on vista is preventing the install.
    Do the following.
    1) Delete ITUNES Completely. When asked for a restart, click No.
    2) Go to the C:\Program Files\Common Files and look for the Apple Folder and delete that puppy too.
    3) Redownload the 64 bit Installed and save to your desktop. You will need this later. DONT INSTALL NOW.
    4) Go to the Start/Circle Menu and on the bottom, type RUN in the Search and select the Run Program.
    4) Type msconfig and hit enter.
    5) When the Program pops up, in the General, DE-select normal startup and select. SELECTIVE START UP. and deselect/leave blank START UP ITEMS
    6) Move over to the Start Up Tab, DESELECT ANY VIRUS SCAN PROGRAM You Have Running.
    7) Click Apply then OKAY, and Exit that window.
    8) Now RESTART your computer.
    9) Reinstall ITUNES as done before.
    10) Go to HELP...run the diagnostics as before and your Apple Mobile Device should be green Now.
    11) Close that window. Connect your IPOD.
    12) iTUNES should now recognize your IPOD.
    After it works. Go back to MSCONFIG...and on General, put Normal Start Up. Click Okay. Restart.
    Hope that works.
    If IPOD is still not recognized, then its a driver issue and I dont know.
    The problem I was having was due to Apple Mobile Device Services not being installed.
    Sincerely,
    Dr. SkiLLz. M.D.

    This is an Answer for a Possible Solution. It worked for me and is still working. The issue I was having with my 64 bit vista, was Apple Mobile Device Service was not being installed, I dont know why. But I disabled any active running program through MSCONFIG, to allow a clean uninterrupted install of ITUNES 8.02. This allowed AMDS and drives from ITUNES to install. Hope this works for most of you.
    APPLE, please review your Support Methods. Re-installing doesnt help an issue that resulted from installing.

  • How to get nigpib 0.8.6 to work with 2.6 kernel?

    I need to use NI PCI-GPIB cards with Fedora Core 3 (i.e. 2.6 kernel) on both x86 and x86_64 machines.
    Has anyone been able to get the nigpib 0.8.6 code to compile and work for 2.6 kernels?

    Hello,
    You should check out the beta of NI-488.2 v2.3 which will run on specific linux distributions that have a 2.6 kernel (Mandrake 10.0, Suse 9.1). While we do not guarantee it to work on FC3, you will probably have better luck with it than 0.8.6. See www.ni.com/beta to sign up.
    Scott B.
    GPIB Software
    National Instruments

  • How to get Asus VG278H 3D monitor to work with MSI GT70 0NC-002US?

    So I just got this monitor for Christmas and it works great in 2D, but my Nvidia control panel will not show the option to set up stereoscopic 3D, I know this laptop is definitely capable of supporting 3D as it has a GTX670m graphics card, and MSI states this in the product description. I have contacted Nvidia customer support, but they weren't able to help, I have updated the graphics card drivers, and am connecting the laptop to the monitor with an HDMI cable. Please help if you can!

    Quote from: flobelix on 31-December-12, 00:28:20
    There is no hint on product site for this notebook being 3D Vision certified. As this is a notebook it takes not just the gpu but also the screen to be 3D Vision certified. Even if it would be I highly doubt it would work on an add-on screen and not just the notebook's screen.
    Sadly....this notebook is 3D Vision certified.....If you actually check the product page, it's one of the major things that are pointed out. Actually, I guess the link I have is for the 0NE (which is what I have), but still...The ONC and OND should be the same.
    http://www.msi.com/product/nb/GT70-0NE.html
    Right there at the end of all the graphics information it talks about 3D Vision. =/
    The 0NC is a bit different. It lacks all mention of 3D Vision. =/
    Now....the worst part. 3D Vision requires a Dual Link DVI connection, which this laptop lacks. HDMI is only comparable to a single-link DVI connection as well. That being said, you're pretty much out of luck when it comes to using the monitor in 3D Mode. Especially with the next part....
    Lastly.....taken from http://www.techjailbreak.com/msi-gt70-0ne-255fr-gaming-laptop-complete-review-and-specs/ which is for the GT70-0NE....
    Quote
    Finally, note that the GTX 680M is compatible with all technologies Nvidia (PhysX, Optimus, etc..) but some of them (such as 3D Vision) cannot be used on the machine, for lack of suitable 3D display. However, if you have the glasses and a 3D Vision screen, nothing prevents you from connecting the MSI GT70 via HDMI and 3D gaming (720p only).
    I hate to say it, but it really looks like you're out of luck when it comes to using that monitor for 3D.

  • Any suggestion on how to get a HP photosmart P1000 to work with windows 7

    I have a Hp photosmart p1000 printer which is not supported in windows 7. Any suggestion or work around.

    Use the Deskjet 970 driver available through Windows Update.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How to get older verison of itunes to work with newest ipod touch iOS

    Downgraded to 10.4.1 itunes cause 10.5 is so messed up i cant do anything with it. But not able to sync or connect ipod to itunes cause of newest iOS... =[ help please!

    iOS 5 requires iTunes 10.5 or later. You'll need to upgrade iTunes again...
    tt2

  • How to get Caps lock indicator in windows 8.1

    How to get Caps lock indicator in windows 8.1   ???
    i am using wireless keyboard KG 1061

    Hi bhargav0,
    I understand you would like a caps lock indicator in Windows 8.1. I admit, I don't know of any fix that simply shows you on the screen, but there is an auditory warning that you can implement if that would be of help to you. Take a look at the following video, Windows® 8.1: Make the Caps Lock key beep when pressed. I hope this will be of use to you. Have a great day.
    Ryan1216
    I work on behalf of HP
    The advice and opinions given here are my own and not those of HP

  • How to Get the Debugger Screen in WEB Front end of SRM

    Hi Gurus,
    I have couple of questions for SRM.
    1. How to Get the Debugger Screen in WEB Front end of SRM so i can debug the application which is running in EBP system??
    2. How to set the flag for external debugging (HTTP)??
    3. Using SICF how to set the ITS services ( Like BBPSC01 )for internal ITS so as soon as i place the order it should stop at the break point which i have set in the application.
    Thanks.
    Regards,
    Manoj Tiwari

    Setting up Debugging for Integrated ITS
    Tcode SICF.
    Select service (e.g. default_hostàbcàguiàsapàitsàbbpsc01).
    Change service settings and insert parameter ~GENERATEDYNDPRO=1.
    Find program to debug. E.g. SE93. Enter bbpsc01 à Display and get Program field (SAPLBBP_SC_UI_ITS)
    Execute SE38 and enter program name.
    Turn HTTP Debugging ON. UtilitiesàSettingsàDebugging. Click Actv and username.
    Add HTTP Breakpoint. Display source code and select Utilitiesàbreakpointsàset.
    On “External Debugging” select ‘HTTP Breakpoint’.
    Remember to remove breakpoints, deactivate debugging and remove parameter GENERATEDYNPRO.
    Can run program RSBREAKPOINTS to find which programs you have breakpoints set in.
    Have fun with EBP
    If you have any more questions i would be happy to help you. Send me mail on [email protected]

  • How to mute and lock screen rotation at the same time? Loved this feature in iOS 5.

    How to mute and lock screen rotation at the same time? Loved this feature in iOS 5.

    You cannot do two different simultaneous VISA writes over a serial bus. There is a single rx line on the pc's com port and a single rx line on the instrument. You only hope is if the instrument allows you to chain commands and the reception of the carriage return triggers the instrument to implement both at the same time. Maybe you can send CTS01 and CTS02 separated by a space or comma. The manual should tell you if that's possible or maybe you need to ask the manufacturer.

  • How to get past gray screen on MacBook?

    How to get past gray screen on MacBook?

    Here are some initial things to try.
    http://support.apple.com/kb/ts2570
    http://lifehacker.com/how-to-troubleshoot-the-four-most-common-oh-sh-t-mac-48708 0511

  • How to get into desktop screen at once when client come into RDP session?

    How to get into desktop screen at once when client come into RDP session?
    When users login into terminal server I would like they see own desktop and open web page of corp portal.
    How to do that?

    Hi
    Hope below links will help
    http://blog.cloud-client.info/2012/10/03/tip-configure-a-keyboard-shortcut-to-minimize-fullscreen-citrix-or-microsoft-rds-sessions-for-a-linux-based-igel-os/
    Also there are some Remote Desktop Services shortcut keys
    http://msdn.microsoft.com/en-us/library/aa383500%28v=vs.85%29.aspx
    Regards,
    Rajesh J S

Maybe you are looking for