How to use Sunray  without VDI or VMware View Manager

There is no VDI or VMware View Manager in my test environment. Only srss 4.2 and srwc 2.2 has been installed.
Now i have 5 sunray client and 5 Windows XP VM. How can I let every user use their Windows XP VM in this environment and can enable USB redirection?
In page http://wikis.sun.com/display/SRWC2dot2/Managing+USB+Device+Redirection+%28All+Topics%29
Supported Configurations
Configuration
SRS 5 (SRSS 4.2, SRWC 2.2) and Sun Ray Connector Kiosk Session
Description
Supports connection to Windows desktop using the Kiosk session.
My question is How to let mutipl-user use it in this config
The following is my settings and all users now can use their own Windows XP but USB redirection cannot work
Select Common Desktop Environment (Obsolete) in Kiosk mode add an application:
cam_script.windows_connector,
#!/bin/ksh
# Script to map smartcard token to individual VM using either
# the "User Name" or "Other Info" field of the output from
# utuser -p <token>
# Look at output from utuser -p ${SUN_SUNRAY_TOKEN} and grab hostname
# % utuser -p user.1140788210-7053
# Current Properties:
# User Name = tester5
# Other Info = host
# Server Name = localhost
# Server Port = 7007
# Logical Token = user.1140788210-7053
# User Created = 02/24/2006 13:36:50
# Token Enabled?
# Payflex.500af8ad00130100 Yes
# Currently Logged In:
# Current Desktop = 0003bad7566e
# Desktop Location =
# Logged In Since = 02/24/2006 13:36:58
# Use "User Name" field as hostname of VM to connect to
#VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "User Name" | awk '{ print $4 }'`
# Use "Other Info" field as hostname of VM to connect to
#VMHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
WinHOST=`/opt/SUNWut/sbin/utuser -p ${SUN_SUNRAY_TOKEN} | /usr/bin/grep "Other Info" | awk '{ print $4 }'`
# Could probably do a ping test here and pop up dialogue
# about getting support to check the availability of the
# machine (might event be able to use VC API to power up VM?)
# if it doesn't respond to ping. Could use something like
# dterror.ds, could also pop up different dialogue
# if VMHOST is not set
COLOUR_DEPTH=16
# If using 24bit need registry change under Windows XP
#COLOUR_DEPTH=24
# Fix F11 and F12
#/usr/openwin/bin/xmodmap -e 'keycode 75 = F11'
#/usr/openwin/bin/xmodmap -e 'keycode 76 = F12'
# Fix alt & print screen
#/usr/openwin/bin/xmodmap -e 'keycode 77 = 0xff62'
# Turn on numlock
/usr/openwin/bin/xset led 1
if [ "${WinHOST}" = "" ]; then
     #dterror.ds "Your Windows Machine can not be determined.\n\nPlease contact support and ask for smartcard \n\n${SUN_SUNRAY_TOKEN}\n\nto be associated to a Windows Machine" "Smartcard not configured" "ERROR"
     WinHOST="Windows_default"
fi
# Run Windows Connector in full screen mode at appropriate colour depth with sound redirection
# Disable the windows pulldown header in full-screen mode
# RDP Window Attributes options to disable are:
# -D wallpaper
# -D fullwindowdrag
# -D menuanimations
# -D theming
# -D cursorshadow
# -D cursorsettings
/opt/SUNWuttsc/bin/uttsc -mb -A ${COLOUR_DEPTH} -r sound:high -u "" ${WinHOST}
#if [ "$?" = "0" ]; then
#     dterror.ds "Logging Out..." "Log Out" "OK"
#else
#     dterror.ds "Your Windows Machine ${VMHOST} is not visible on the network.\n\nIf you have just restarted it please wait a minute and try again\nIf you still have problems get help" "Windows VM is not available" "OK"     
#fi
# End of CAM script
Then add IP address in other information of Token.

Meta Kiosk would certainly do what you need and the USB pass through works.
http://blogs.sun.com/danielc/entry/meta_kiosk_how_to_run
I think the problem you are running into is that you are using uttsc inside a Solaris environment as an app, looks like CDE, which isn't being supported to my knowledge to avoid conflicts between the two desktops. It is designed to work out of the box with SRWC kiosk mode.
The undocumented way to turn it on is to turn usb on by adding -r USB:on as an argument.

Similar Messages

  • HT5457 How to use facetime without wifi, I use Iphone 4S

    How to use facetime without wifi, I use Iphone 4S

    Only if your iPhone is 4S and your carrier supports it.
    Read this: http://support.apple.com/kb/TS4400

  • How to use forfiles= without recreating over and over?

    I’m struggling trying to get some file testing done and can’t figure what the right combination of commands should be. The goal is to have a number of files created (64, for example), then run different tests on those files, varying the number of files tested (from 4 doubled to 64, for example).  Things work fine if I have the rd section of the script set as:
    rd=f4,fwd=fwd4,files=4,format=yes
    rd=f8,fwd=fwd8,files=8,format=yes
    rd=f16,fwd=fwd16,files=16,format=yes
    rd=f32,fwd=fwd32,files=32,format=yes
    rd=f64,fwd=fwd64,files=64,format=yes
    The problem with this is that if I want to repeat the test or run a different test, the files will be recreated, taking much longer than necessary, as well as possibly causing storage specific issues. If I use “format=restart” or “format=no”, I end up with an error message such as:
    old depth=1; new depth=1
    old width=1; new width=1
    old files=64; new files=4
    I’ve tried using”forfiles=(4-64,d)”, but that also gives me errors similar to the above. The overall goal is to have a directory with a specific number of files of the specified length (files=64,format=only on a special rd line?), then run multiple tests, varying the number of files to be tested without having to recreate them every time. I’ve tried all combinations of forfiles, format=, and most other keywords I can think of, but just can’t seem to be able to get things to work without vdbench telling me that I can’t test ’n’ files if the directory contains a number of files other than ’n’. Same file sizes in all cases; just want to test a different number of them.
    The real question is how I can use the forfiles= command in a script that will be run many times without having to create the files each and every time. I’m clearly missing an important concept, but after a week of trying, I can’t figure out what it is.
    Any ideas?

    Correct me if I am wrong: You want to have 64 files created, and then test using, then 8, then 16, etc.
    'forfiles' won't do this; the file count is an integral part of of a file system structure and can not be changed without starting all over with a complete format.
    How about using for 'workingsetsize' parameter? This won't allow you to directly specify the amount of files, but if your file sizes are all the same then you'll just have do do a little math.
    I just ran this:
    fsd=default,depth=1,width=1,files=100,size=10k
    fsd=fsd1,anchor=r:\junk\fsd1
    fwd=fwd1,fsd=fsd1,xfersize=4k,fileio=random,fileselect=random,threads=1
    rd=default,elapsed=3,interval=1
    rd=rd1,fwd=*,operations=(read),fwdrate=100,format=once,forwss=(20k,40k,60k)
    Note the use of 'format=once'.
    This is the result:
    C:\vdbench504\output>grep -i created logfile.html
    10:31:59.151 FILE_CREATES        Files created:                               100     100/sec
    10:31:59.152 DIRECTORY_CREATES   Directories created:                           1       1/sec
    10:31:59.235 localhost-0: Created workingset=20k subset for anchor=r:\junk\fsd1 using 2 of 100 files.
    10:32:03.405 localhost-0: Created workingset=40k subset for anchor=r:\junk\fsd1 using 4 of 100 files.
    10:32:07.297 localhost-0: Created workingset=60k subset for anchor=r:\junk\fsd1 using 6 of 100 files.
    Hope this helps,
    Henk.

  • How to use database without wizard

    Can anyone help me to use recordsets without using the appwizard at the creation of my project?
    the purpose is to input on the database values from a form without using a database project, so in my MFC project I do the following and then I faced problems :
    In the class which I use the database I add the member variable
    CDatabase m-Mydatabase;
    on an "OnButton" function of this class I do :
    m_Mydatabase.Open(NULL,FALSE,FALSE,stringconnect)
    I have many dialog boxes, each dialog has a form from which I get data and put them on the database and vice versa.
    I create fo each dialog box a RecordSet, and I include the .h file of the record set in the dialog class in which I'm going to use it.
    So now how to use this recordset and put the values from controls to database ?
    thank's in advance.

    MFC? CDatabase?
    Hmmmm.....are you aware that this forum is for Java (a programming language) and you are asking a question about MFC (Microsoft C++ windows framework.)
    Perhaps if you could clarify the exact problem that you are having with java, jni or one of the other java libraries?

  • How to use SQLExec without the ODBC error

    When I execute the query using SQLExec it gives alarm on Excel ODBC driver.Please provide detailed instructions on how to use this object.

    Mani,
    I have found an example that you can use to help you in your development of your Lookout application. This example will eventually be found in the resource Library of the Developer Zone.
    Attachments:
    sqlexcel.zip ‏132 KB

  • How to Use XMLHttp without using AJAX in JAVA

    Hi...
    Can any one tell me how to use XMLHttp using Java( not with AJAX or JavaScript). I have one requirement to post one Request to another vendor. that vendor is supporting XMLHttpRequest (developed in ASP). when i try to post request using HttpURLConnection connection it is giving wrong response. But when am posting same request by using VB standalone tool which is using XMLHttp which is provided by vendor it giving correct response.
    please any one tell how to use XMLHttp in JAVA

    Your code will respond to changes in selection.
    To do the same for a JButton you can do:
    JButton button = new JButton("hello world");
    button.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            // say hello
    //or you could do
    button.addActionListener(al);
    ActionListener al = new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            // hi
    // or use an inner, nested class that implements ActionListener
    // or an inner Action class
    button = new JButton(action);
    private Action action = new AbstractAction("mahbuhi") {
        public void actionPerformed(ActionEvent e) {
            // yes
    // or you could use an outer class that implements ActionListener...
    MyListener l = new MyListener();
    button.add(l);

  • How to use cloud without lion?

    How to use the cloud with an old Imac that will not support lion?

    Buy a new Mac. 
    In all seriousness though you can't you have to have Lion in order to get iCloud. Perhaps you could state what you are trying to achieve and there may be other alternatives available to  you. For example if you simply want to share files between computers then get a Dropbox account. You can find out about Dropbox at www.dropbox.com

  • HOW TO: using custom fonts in native storyboard views from an ANE on iOS

    Hey,
      In our apps, we have embedded storyboards into an ANE, and successfully used those screens in an AIR app, and figured out how to use custom fonts in those views.
      I wrote a quick blog post about it and just thought I'd share it real quick in case it helps someone.
    ANE for iOS with Custom Framework – Using Custom Fonts | khef.co

    Hi WayHsieh,
    >>can I just "install" fonts through Word App? Does Word Apps have enough privilege to install fonts on Windows? Can I just click a button in Word App, and then it will install fonts automatically?<<
    Based on my understanding, it is hard to achieve the goal. Because the app webpage is hosted inside an Internet Explorer control which, in turn, is hosted inside an app runtime process that provides security and performance isolation and it is under
    low-Integrity level.
    Here is the figure for apps for Office runtime environment in Windows-based desktop and tablet clients:
    You can get more detail about Privacy and security from links below:
    Privacy and security for apps for Office
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How I can add a LOV in Business View Manager?

    Hi,
    I am working with crystal report XI. After finishing with a report, I published it on Business Object Enterprises.(I will connect with it remotely from my system)
    I am having priviledge to log in into InfoView to check the same report there.
    But i don't know about Business View Manager. How I can access it. I need to contact administrator for that?
    Thanks in advance...

    Hi Deepak,
    You can find Business View Manager at the following path if it is installed on your machine.
    Click on Start>All Program>BusinessObjects XI Release 2>BusinessObjects Enterprise>Business View Manager.
    In case it is not installed you can contact your administrator                 
    To know more about Business View Manager go to http://help.sap.com and under Business Objects tab search for u2018xi3_bv_admin_en.pdfu2019. Select Product as Business Objects Enterprise.
    Please let us know if this solves your queries.
    Regards,
    Aditya Joshi
    Edited by: Aditya Joshi on Oct 1, 2008 12:12 PM
    Edited by: Aditya Joshi on Oct 1, 2008 12:15 PM

  • How to use Client_Host without the exe file path

    Hi,
    i'm using oracle forms 10g,
    in my application the users can upload any type of files (doc,xls,pdf,avi ,.. etc) and any user can download and open any of these files.
    i implement this using client_host and including the path of winword.exe or AcroRd32.exe ,...
    in many cases i don't know where these exe files are installed in the client side or whether it is installed or not.
    i tried this command : client_host('calc.exe') it works and show me the calc without including the path of this exe file.
    what i want to do is to just call the target file(doc,pdf,avi,..) in the client_host without having to precede this with the exe and path like the calc.exe example.
    if you go to start->run and write for example c:\ahmed.mpeg , windows automatically call the real player or any other video software installed and open the movie.
    can we implement this in oracle forms? and how?

    Hi, you attach a procedure to download a file in the local runs from Windows and to close it updates in the database and then delete the local directory
    PROCEDURE OPEN_FILE (V_ID_DOC IN VARCHAR2)
    IS
    -- Open a stored document --
    LC$Cmd Varchar2(1280) ;
    LC$Nom Varchar2(1000) ;
    LC$Fic Varchar2(1280);
    LC$Path Varchar2(1280);
    LC$Sep Varchar2(1) ;
    LN$But Pls_Integer ;
    LB$Ok Boolean ;
    -- Current Process ID --
    ret WEBUTIL_HOST.PROCESS_ID ;
         V_FICHERO VARCHAR2(500);
         COMILLA VARCHAR2(4) := '''';
         BOTON     NUMBER;
         MODO     VARCHAR2(50);
         URL     VARCHAR2(500);
    Begin
         V_FICHERO := V_ID_DOC;
              -- Ruta y nombre del fichero temporal --
              LC$Sep := '\';--WEBUTIL_FILE.Get_File_Separator ; -- 10g
              LC$Nom := V_FICHERO;--Substr( V_FICHERO, instr( V_FICHERO, LC$Sep, -1 ) + 1, 100 ) ;
              --LC$Path := CLIENT_WIN_API_ENVIRONMENT.Get_Temp_Directory ;
              LC$Path := 'C:';
              LC$Fic := LC$Path || LC$Sep || LC$Nom ;
              -- Descargamos el fichero --
              If Not webutil_file_transfer.DB_To_Client
              LC$Fic,
              'TABLE_NAME',
              'ITEM_NAME',
              'WHERE'
              ) Then
              Raise Form_trigger_Failure ;
              End if ;
              -- Abrimos el fichero temporal en local --
              LC$Cmd := 'cmd /c start "" /MAX /WAIT "' || LC$Fic || '"' ;
              Ret := WEBUTIL_HOST.blocking( LC$Cmd ) ;
              LN$But := WEBUTIL_HOST.Get_return_Code( Ret ) ;
              If LN$But <> 0 Then
                   Set_Alert_Property( 'ALER_STOP_1', TITLE, 'Host() command' ) ;
         Set_Alert_Property( 'ALER_STOP_1', ALERT_MESSAGE_TEXT, 'Host() command error : ' || To_Char( LN$But ) ) ;
         LN$But := Show_Alert( 'ALER_STOP_1' ) ;
         LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
         Raise Form_Trigger_Failure ;
              End if ;
              -- Actualizamos el fichero en la BBDD --
         If Not webutil_file_transfer.Client_To_DB
              LC$Fic,
              'TABLE_NAME',
              'ITEM_NAME',
              'WHERE'
              ) Then     
              NULL;     
              Else
                   Commit ;
              End if ;     
         -- Eliminamos el fichero temporal local --
              LB$Ok := WEBUTIL_FILE.DELETE_FILE( LC$Fic ) ;
    Exception
              When Form_Trigger_Failure Then
              Raise ;
    End ;

  • How to use a VHD file in VMWare

    I have received a backup of the VMware files that is a vhd file. is there a way I can import these into VMware so I can view and use the files contained within the vhd file. I am running VMware XP mode in Windows 7. Please help.

    Hi Annie and thanks for posting.
    You can use a third party tool named win image to convert the VHD file (Hyper-Virtual Disk) to VMDK (VMware Virtual Disk). then attach the VMDK to your VMware (Workstation or VSphere) VM and view files.
    Full tutorial can be found here :
    http://www.mydigitallife.info/how-to-convert-and-import-vhd-to-vmdk-vmware/
    I hope this helps.
    Farhad

  • How to use JMF without download it?

    hi all,
    I have a Video conferencing using JMF
    - transmission : an application (with capturing a webcam source and jmf installed)
    - reception : an applet (display the video without jmf)
    How could a remote user use the applet without download jmf?
    Thanks a lot
    Christel

    hi,
    I have tried this way but it doesn't work.
    I have make a jar-file but there is not Manisfest inside.
    My process:
    1- Type of Archives -> "JAR de l'applet" (Jar of the Applet)
    2- Name = JAR de l'applet
    File = C:/CAV/RtpApplet/RTPApplet.jar (I don't know what i can put in this area)
    I have also checked all CheckBoxes
    3- Classes et ressources du projet (Classes and resources of the Project) -> I have check "Toujours inclure les classes et ressources" (always include classes and resources)
    Add classes et packages : javax, com, rtpavc (my personal package)
    4- Library = "AV" (which is the entire jmf.jar)
    select the CheckBox "Inclure classes et toutes ressources requises" ( include classes and resources needed)
    5- select the CheckBox "Inclure un Manifest dans l'archive" (include a Manifest in the archive)
    Select the RadioButton : "Cr�er un Manifest" (Create a Manifest)
    I have a jar-file (the "JAR de l'applet") but when i select it i have nothing inside and no Manifest-file.
    I really don't know how it's working.
    I really need your help,
    Thanks in advance.
    Christel

  • How to use Icloud without wifi on a PC???

    I read on apples website that you can use Icloud using ethernet but how?? I downloaded the Icloud control panel and enabled photostreaming on my iphone 4s and have Windows Vista service pack 2. I take pictures but no pictures appear in the folder on my PC. What am I missing or not doing right. I've searched high and low on but can't find any answers. Please help. THanks

    Mikeb1221,
    I'm not on a Windows machine, so I don't know how much help I can be, but I can tell you that it doesn't matter whether your computer is using Wi-Fi or ethernet.  All that matters is that iCloud has access to the internet.  The iPhone does need to be connected to Wi-Fi for Photo Stream to sync though; it won't work on the cell network.
    Before we do any troubleshooting, follow the steps in this article to reset your Photo Stream, and see if it resolves the issue.  http://support.apple.com/kb/HT4890
    It sounds like you've followed the correct setup process, but it doesn't hurt to check again.  Restart your computer and do a soft reset on your iPhone by holding down the power and home buttons until the Apple logo appears on the screen.  Once both have restarted, make sure that you only have one iCloud account set up on each device, and that they are both configured with the same account.  Ensure that Photo Stream is turned on for each device as well.  For the iPhone, check under both the "iCloud" and the "Photos" tab.  Next, click the "Options" button in iCloud Control Panel to make sure you have photos syncing to the correct folder.  If the pictures are still not syncing, try placing an image in the "Uploads" folder on your computer to see if it will sync to iCloud.  Also, be aware that Photo Stream will only sync pictures taken after it has been set up, so images you already had on your phone will not sync.
    Try to provide some more information, such as any troubleshooting steps you have taken so far.  Is anything else syncing between your computer and phone, such as calendars or bookmarks?  Did you follow an online tutorial to set this up, or did you figure it out as you went along?
    I hope this helps.  Let me know if any of these steps fix your issue.
    Message was edited by: mp3 Andrew

  • How to use GPS without data

    Hello Guys,
    Just want to know what app I may use to use my Iphone 6+ with an GPS without the need to use the celular data.
    I would appreciate your support.
    thanks
    Jose

    Hi Fallmists,
    To enable your iPhone 4 to be on Wi-Fi when in Canada, please use these steps below. These steps will allow you to connect to a Wi-Fi where it is available instead of you using a wireless network. Also, when you are using your Wi-Fi, the GPS would work off that Wi-Fi connection. I also understand you do not want Data Roaming wile in Canada. Please bear in mind, if you should need to use Data functions in Canada, this would be Data Roaming billed at the roaming rate of $0.002 dollars per kilobyte. Also, if you make calls while in Canada, it is $0.69 a minute for international roaming. Here is a link for international services information for additional assistance.
    To enable Wi-FI:
    1. From the home screen, touch the Settings.
    2. Touch Wi-FI.
    3. If Wi-Fi is not active, slide indicator to On.
    4. To join a network device will display available networks, tap desired network and enter security password if needed.  
    For more assistance with your iPhone 4, please refer to this link for website on the support page. Please use the pull-down tab to select the specific iPhone 4 device you have to access information and tips.

  • Zen Microphoto Drivers / How to use microphoto without

    I've lost the CD for my Zen Microphoto and just recently formatted and reinstalled Win XP on my computer. Most companies host drivers for the hardware they sell. Creative seems to be taking exception to the microphoto. I've downloaded everything listed in the downloads section for the microphoto. The strange thing is that there is no driver listed. I've been trying for weeks to find a way to transfer songs to and from my zen and have yet to find a way. I can't even install the zen organizer application because it requires a connection with my zen player (which my computer can't find without a driver). I've tried connecting with my zen on several different computers. Nothing works. Any ideas?
    By the way, who's bright idea at creative was it to sell mp3 players that don't come with power cords that connect with wall outlets?

    If you are using standard oracle client, software is installed correctly, you shouldn't need to. The oracle directories will already be on the path.
    If you are using instant client you will have to set your path manually. Goto control panel -> system -> Environment variables.
    I'm fairly sure the Instance client installation document has something on this.
    Windows doesn't use LD_LIBRARY_PATH. It just uses PATH

Maybe you are looking for

  • JDBC Receiver does not convert empty string to NULL

    Hello experts, I am facing a problem with an INSERT statement to ORACLE DB where some of the fields are empty, for example: - <STATEMENT_VLP_CONT_DETAILS> - <TABLE_VLP_CONT_DETAILS ACTION="INSERT">   <TABLE>VLP_CONT_DETAILS</TABLE> - <ACCESS>   <VLP_

  • In my library i'll show an album but on my classic it will show the album twice, why? and how can I fix it?

    Not every body is a computer wizz so why make it so difficult to get an answer. I asked how do I fix it when your library on your PC shows an album that same album shows up twice on my classic. Am I the only one getting frustrated from having to jump

  • Preferred Vendor & Vendor Issue in SC

    Hi Friend's Currently i am working with Extended Classic Scenario's Shopping Cart was created with both the field (Preferred Vendor & Vendor) Here Vendor Filed normally creates from the catalog But Whenever user copied the same shopping carts and use

  • Synchronizing calendars and contacts using 2 computers and 2 iphones

    my husband and I both have a MacBook Pro; we both have an iPhone. Lucky us! We want to be able to synchronize our calendars and contacts on each other's computers. How can we do this without over-writing each other's calendars and address book? We bo

  • IPhone won't sync when plugged in...

    After upgrading to iTunes 9, my iPhone won't sync when I plug it it in. When I connect it, iTunes opens automatically and the phone/application will say it's syncing, but then after a couple of seconds it just stops and nothing has changed on the pho