SGD 4.3 authenticate with AD(Users login n get different set of application

Hi SGD Forum users,
First of all, happy new year and happy holiday to all of you from new SGD user :-).
We are planing to Demo SGD 4.3 to one of our customer by early next week.
So, what the customer would like to see with the demo:
1) From SunRay client, user1 launch Firefox browser and type the sgd web page.
- Enter username and password ( Username and password must authenticate with AD ).
- After successfully authenticate, user1 will get his webtop page.
- In the webtop page, user1 only have two(2) applications to launch. First application is MS Office Word and Second application is Full Virtual XP desktop( 192.168.5.205 ).
2) From SunRay client, user2 launch Firefox browser and type the sgd web page.
- Enter username and password ( Username and password must authenticate with AD ).
- After successfully authenticate, user2 will get his webtop page.
- In the webtop page, user2 only have two(2) applications to launch. First application is MS Office Excel and Second application is Full Virtual XP desktop( 192.168.5.206 ).
3) From SunRay client, user "manager" launch Firefox browser and type the sgd web page.
- Enter username and password ( Username and password must authenticate with AD ).
- After successfully authenticate, user "manager" will get his webtop page.
- In the webtop page, user "manager" only have four(4) applications to launch. First application is MS Office Word, Second application is MS Office Excel, Third application is MS Office Powerpoint and Fourth application is Full Virtual XP desktop( 192.168.5.207 ).
Note: The above mentioned users( user1, user2 and manager ) launch a different MS Office applications and different Virtual XP desktop servers.
Here are my SGD 4.3 demo setup:
- Install Solaris 10 06/06 OS for Sparc.
- Install latest patches.
- Create a local zone.
- Install SRSS 3.1 and patches in Global zone.
- Install SGD 4.3 in the local zone.
- My colleague install 2x MS Server 2003( AD and DNS server )
- My coleague install ESX( VM Server ) and created 3x Virtual XP Desktop( 192.168.5.205, 192.168.5.206 & 192.168.5.207 ).
In my SGD, Array Manager, i had successfully set "Enabling the Active Directory login authority" as mentioned in the SGD Administrator Guide. I also login successfully to SGD server using user1, user2 and manager( Created in AD server ). So, my SGD server successfully communicated with AD server.
When i test login user1 or user2 or manager to SGD server, they get same webtop with same applications. If i am not wrong, these behaviour is due to LDAP Profile under "o=Tarantella System Objects". If i put any application in LDAP Profile's Links tap, all the user whose authenticated with AD will be able to launch it.
The customer requirement is, all the users authenticate with AD and the users should launch different applications and different Virtual XP Desktop as i mentioned earlier.
Is it possible to perform the SGD demo as customer requirement ? If yes, can you guide and help me on how-to create different profile for each AD authenticated users.
Thanks in advance.
# Yours Sincerely,
# Mohamed Ali Bin Abdullah.

Hi Wai,
Sorry not including full details of the person object in my previous posting.
Here are the details of person object:
General
- Name: user1
- Description:
- Surname: esuria
- Username: user1
- Email: [email protected]
- Locale: Automatic
- Keyboard Map: Use XPE setting
- Windows NT Domain: BIA
- Bandwidth: None
- Webtop Theme: Standard
- Inherit parent's webtop content: NO
- Shared between users(quest): NO
- May log in to Secure Global Desktop: YES
- Profile Editing: Use Parent setting
- Clipboard Access: Use Parent Setting
- Serial Port Mapping: Use Parent Setting
Links
o=BIA/cn=MS XP Desktop 192.168..5.205
Thats the setting of user1 person object which i had created in my SGD but when user1 authenticated with AD, the user1 still sees LDAP Profile applications.
What else, do i need to set in SGD and AD server side ?
Thanks in advance.

Similar Messages

  • Set "peoples or groups" field with current user "login name" in sharepoint list form using javascript

    hi friends
    i am trying to set peoples or groups field in sharepoint  list form with current user login name
    here my code
    <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
    <script type="text/javascript">
    $(document).ready(function NewItemView () {
    var currentUser;
        if (SP.ClientContext != null) {
          SP.SOD.executeOrDelayUntilScriptLoaded(getCurrentUser, 'SP.js');
        else {
          SP.SOD.executeFunc('sp.js', null, getCurrentUser);
        function getCurrentUser() {
          var context = new SP.ClientContext.get_current();
          var web = context.get_web();
          currentUser = web.get_currentUser();
          context.load(currentUser);
          context.executeQueryAsync(onSuccessMethod, onRequestFail);
        function onSuccessMethod(sender, args) {
          var account = currentUser.get_loginName();
          var accountEmail = currentUser.get_email();
          var currentUserAccount = account.substring(account.indexOf("|") + 1);
        SetAndResolvePeoplePicker("requester",account);
    // This function runs if the executeQueryAsync call fails.
        function onRequestFail(sender, args) {
          alert('request failed' + args.get_message() + '\n' + args.get_stackTrace());
     function SetAndResolvePeoplePicker(fieldName, userAccountName) {
       var controlName = fieldName;
        var peoplePickerDiv = $("[id$='ClientPeoplePicker'][title='" + controlName + "']");
        var peoplePickerEditor = peoplePickerDiv.find("[title='" + controlName + "']");
        var spPeoplePicker = SPClientPeoplePicker.SPClientPeoplePickerDict[peoplePickerDiv[0].id];
        peoplePickerEditor.val(userAccountName);
        spPeoplePicker.AddUnresolvedUserFromEditor(true);
    </script>
    but it is not working
    please help me

    Hi,
    According to your post, my understanding is that you wanted to set "peoples or groups" field with current user "login name" in SharePoint list form using JavaScript.
    To set "peoples or groups" field with current user "login name”,  you can use the below code:
    <script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.9.0.js"></script>
    <script type="text/javascript">
    function SetPickerValue(pickerid, key, dispval) {
    var xml = '<Entities Append="False" Error="" Separator=";" MaxHeight="3">';
    xml = xml + PreparePickerEntityXml(key, dispval);
    xml = xml + '</Entities>';
    EntityEditorCallback(xml, pickerid, true);
    function PreparePickerEntityXml(key, dispval) {
    return '<Entity Key="' + key + '" DisplayText="' + dispval + '" IsResolved="True" Description="' + key + '"><MultipleMatches /></Entity>';
    function GetCurrentUserAndInsertIntoUserField() {
    var context = new SP.ClientContext.get_current();
    var web = context.get_web();
    this._currentUser = web.get_currentUser();
    context.load(this._currentUser);
    context.executeQueryAsync(Function.createDelegate(this, this.onSuccess),
    Function.createDelegate(this, this.onFailure));
    function onSuccess(sender, args) {
    SetPickerValue('ctl00_m_g_99f3303a_dffa_4436_8bfa_3511d9ffddc0_ctl00_ctl05_ctl01_ctl00_ctl00_ctl04_ctl00_ctl00_UserField', this._currentUser.get_loginName(),
    this._currentUser.get_title());
    function onFaiure(sender, args) {
    alert(args.get_message() + ' ' + args.get_stackTrace());
    ExecuteOrDelayUntilScriptLoaded(GetCurrentUserAndInsertIntoUserField, "sp.js");
    </script>
    More information:
    http://alexeybbb.blogspot.com/2012/10/sharepoint-set-peoplepicker-via-js.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • HT1492 Hmm, I was deleting some files last night and when I came to booting up this morning my Macbookpro (5 years old) i was greeted with a user login screen? put in my password, but all i get is the space screen and no further action...? cant get apps o

    mm, I was deleting some files last night and when I came to booting up this morning my Macbookpro (5 years old) i was greeted with a user login screen? put in my password, but all i get is the space screen and no further action...? cant get apps o my bar

    Sounds like you may have deleted something you shouldn't have. Boot to an OS X DVD or a bootable backup, and using Disk Utility, do a repair disk, and while there repair permissions. Disconnect any peripherals, and reboot. If you get the same startup behavior, do a safe boot, by holding the shift key down when booting. If that works, try a normal boot. If neither step helps, you may need to relaod your operating system.

  • Preoblem with Browse facility in Terminal Server with Normal User Login!!!

    Hii All,
           I am facing a problem with my addon in which I am using browsing facility.
           But the Browse facility is working properly  in Terminal Server with Administrator Login, but not working in Terminal Server with Normal User Login.
           So how it can be solved?
    Thanks & Regards,
    Nabanita
    Edited by: ghosh.nabanita on Aug 9, 2011 12:47 PM
    Edited by: ghosh.nabanita on Aug 9, 2011 1:46 PM

    Hi,
    You have to check group polices if browsing is enabled.
    Check this thread:
    http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/336377db-e0cb-4c8e-b7c7-01b7c11c0e27/

  • Help with multiple user login script

    Hi, just a little background first to what i want to do...
    I have about 300 Macs in an education environment, they are bound to the AD network for authentication and OSX Server LDAP for forced prefs, the network Home accounts are stored via Apple and Promise Raids on XServes.
    We also have 4 local user accounts on all the Macs for video etc. I have some simple scripts that i would like to force to the local Users only, (empty trash, reset dock. reset desktop pics and delete items etc).
    I have done the script and saved it as a .app and it works on the Macs as a local User login option. However, when I bind the Mac back to the LDAP the local user script stops working. I have seen the option to 'Allow local scripts' to run via WGM, but have not had success here either, (I have ran the 2 EnableMCXLoginScripts on the clients).
    Now I thought I would try to run the script as a Launchdaemon option using Lingon. This works, but its active for all users, I do not want it to delete Network account users Desktops! Is there a way I can add an 'If' option at the beginning of my script. As in..'if users home account is /Network/Sharepoint' then quit.
    I cannot run it as a one script for all Mac setting as the different local users have different Desktop Pics and Docks etc
    Any ideas or other options I could try?
    Any help hugely appreciated.
    C

    V.K, thanks for that, sometimes I just don't see the obvious.
    I have tried it as a ~/Library/LaunchAgents using lingon to create the .plist. I just cannot get it to run though. I have tried it as a .sh .scpt and as a .app file stored in the /Users/Shared folder.
    All will run if I manually launch them after login though. I have made them all executable for all.
    I have also tried to run it without the Mac connected to my LDAP. I have added the relevant folders to the allow list in WGM on the lDAP anyway...
    Any ideas what I could be doing wrong?
    C

  • Can anyone help me with a user login script on php for Oracle database?

    I have a script which somehow is not working well. Can anyone give a good script (for Oracle database) for user login and validation and change password? I will be grateful
    JJZ

    http://www.oracle.com/technology/pub/articles/deployphp/seliverstov_deployphp.html
    http://www.oracle.com/technology/tech/php/htdocs/php-oracle-tutorial.html

  • Can not assign custom access level with a user login

    Hi,
    I am using Business objects XiR3. When I am loging in with a user having full control access and then I select a folder added a principal from user sercurity and when I am trying to add custom access level it gave me error
    An error occurred at the server during security batch commit: Request 0 of type 38 failed with server error : You do not have sufficient rights to make the requested security changes.
    it allow me to give access to standard access levels. also when I tried to assign custom access level with administrator user, it assigns custom access level to a principal without error.
    Can any body tell me what I am doing wrong?
    Thanks in advance,
    Rajendra

    Hi Rajendra,
    You have to make sure that the user group has the right 'Use access level for security assignment' assigned as granted on the access level you created. You can find this right under System / Access Level. That should do the trick!
    Hope this helps...
    Martijn van Foeken
    Focuzz BI Services
    http://www.focuzz.nl
    http://nl.linkedin.com/in/martijnvanfoeken
    http://twitter.com/mfoeken

  • Create Members Only page with unique user login

    I would like to create a Members Only page on our site which allows our dealers to create their own user name / password. I would need to be able to manage the database of login information in order to remove users as necessary.  Any advice on a widget or program that would work with Muse to accomplish this?

    You can also refer to the below links:-
    Re: Can I create a login/password protection in Muse for a HTML5 page or two?
         Password Protect Pages Widget for Adobe Muse
    Regards,
    Neha

  • Help with other user logins

    Something has changed in my logon process where now I am the only user than can login on startup.  If I logoff without shutting down, other users can log in, but only I can from a cold start.  I know this is something I did by accident. 
    About 1-2 weeks ago some option came up for security or something.  It sounded like a good idea so I selected and the process encrypted my HDD or something like that.  Now when my iMac boots up, I am the only user that can logon (and my logitech G700 mouse does not work upon startup but that is a minor issue). 
    Thanks.

    Hello OrlandoEllis14,
    Check out the article below to understand what takes up the Other section on your iPhone. Other is made up of Settings, Siri and other system data that may have been synced.
    Understanding iOS device capacity
    http://support.apple.com/kb/ht1867
    Regards,
    -Norm G. 

  • How do I share the Photo Library on my desktop with another User. I have Apoerture set up on my wife's user account but cannot figure out how to access the photo library from her desktop.

    I just got a new IMac. I transferred all the photos from our old PC to the Aperture Library on my User account. My wife is set up as another User. She can access Aperture from her User account but there are no photos in the Library. How can I share or giver her access to the photos so that she can work with them on Aperture from her User account?

    Move the Aperture library to separate disk or disk partition with plenty of space for all your photos. On a separate disk or partition it will be possible to set the "Ignore ownership on this volume" flag. Then two users can write to the same Aperture library without permission problems.
    The procedure is describe here for iPhoto libraries, but this will work for Aperture libraries as well:
    iPhoto: Sharing libraries among multiple users
    If you want to use a drive for your Aperture library, that has been used with a PC, format it for Mac, before you move the Aperture library there. This can be done with Disk Utility.

  • UAG not working for OWA. After login it gets stuck at launching application stage.

    Please help,

    Hiya,
    Just to be sure, because configuring OWA for UAG is special :) - Could you verify your configuration with the steps outlined in this guideline?
    https://technet.microsoft.com/en-us/library/ee921443.aspx

  • Script to find the list of Queries currently running in database with User Login Name and Host Name.

    Hai,
    How to find the list of queries currently running in the Database with User Login Information.
    Since my database application is running slow, to find the slow queries.

    Try the below query
    SELECT r.start_time [Start Time],r.session_id [SPID],
    DB_NAME(database_id) [Database],
    s.host_name,
    s.program_name,
    s.login_name,
    SUBSTRING(t.text,(r.statement_start_offset/2)+1,
    CASE WHEN statement_end_offset=-1 OR statement_end_offset=0
    THEN (DATALENGTH(t.Text)-r.statement_start_offset/2)+1
    ELSE (r.statement_end_offset-r.statement_start_offset)/2+1
    END) [Executing SQL],
    r.status,command,wait_type,wait_time,wait_resource,
    last_wait_type
    FROM sys.dm_exec_requests r
    OUTER APPLY sys.dm_exec_sql_text(sql_handle) t
    inner join sys.dm_exec_sessions s
    on s.session_id = r.session_id
    WHERE r.session_id !=@@SPID -- don't show this query
    AND r.session_id > 50 -- don't show system queries
    ORDER BY r.start_time
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Unable to login to caralog manager online with adminstrator user

    Hi Gurus,
    I am unable to login to catalog manager online with administrator user. I get error as
    'access denied for user to path /.'
    I think this is because of catalog migration from dev to test.
    What do i need to do so that i could login to catalog manager online with administrator?
    Please advice
    Thanks

    Hi,
    When the catalog is moved from Dev to Test/prod permissions are not copied. The users are part of the system folder (i.e Catalog Manager > Users > Properties > Owner Account = System Account), which is why Catalog Manager does not transfer the permissions.
    I guess that is the reason you were able to run the reports from dev and not from test/prod. To have them work you might need to refresh GUID's check the Oracle note [ID 1467256.1].
    1. Stop the Presentation Server.
    2. Backup the instanceconfig.xml file at [middleware_home]/instances/instance1/config/OracleBIPresentationServicesComponent/coreapplication_obips1/instanceconfig.xml
    Under the 'Catalog' section, add the 'Recover' tag. For Example:
    <Catalog>
    <UpgradeAndExit>false</UpgradeAndExit>
    <UpdateAccountGUIDs>Recover</UpdateAccountGUIDs>
    </Catalog>
    4. Start the Presentation Server. It will perform a recovery and then after some time shutdown.
    5. Remove the tag.
    6. Start the Presentation Server again.
    Let me know if this helped.
    Regards,
    Jay
    Edited by: Voltaire on Nov 19, 2012 11:59 AM

  • SAP NW CE 7.1: Sign-on to R/3 backend with Portal User

    Hello,
    I have create a an Application Service. There I have imported some RFC and created some operations to read data from the R/3 backend and write in R/3 backend.
    I have created an other Development Component. It's a EJB Module. With EJB invocation I get access to the Application Service.
    The next step is to use the EJBs with Web Dynpro with the an EJB Model Import.
    Now my questions:
    How can I realize that this user who sign on in portal and excute the Web Dynpro Application also sign on at R/3 backend. In NWA at Destinations I changed the <i>Logon Data--Authentication</i> from <i>Technical User</i> to <i>Current User (Logon Ticket)</i>.
    Now I get the following exception:
    java.lang.IllegalStateException: No SAP logon ticket found for destination TDE.
    I execute the methods of the EJB in a test-class via JDNI-lookup.
    <b>How can I create a logon ticket for my destination?</b>
    Do I have "only" to follow the instructions here for http://help.sap.com/saphelp_nwce10/helpdata/en/4d/dd9b9ce80311d5995500508b6b8b11/frameset.htm for Scenario 1?
    <b>How can I deliver CAF the userid and password?</b>
    I implemented a test-class where I use the EJB of the EJB Module. How can I give CAF the userid and password of an PortalUser?
    Redards,
    Armin

    Hi Armin,
    Unfortunately, I cannot answer your question about logon tickets. But regarding user propagation to the CAF Application Service:
    When you access the Portal / WD app, you authenticate with some user. The latter is automatically propagated to the EJB in the EJB module and then to the EJB implementing the CAF service. So, you don't need to do anything explicitly.
    HTH!
    -- Vladimir

  • When I try to use shutter fly on my mac it won't let me, it also won't let me play videos on youtube or Facebook, however if I login as a different user it will let me do all of these.  Any ideas?

    problems with safari playing videos with one user login but not another.

    Check Safari extensions.
    From your Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari. Try Shutterfly and Facebook content.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extension issue, make sure Allow Plug-ins is enabled. Safari > Preferences > Security

Maybe you are looking for

  • BOXI 3.1 installation problem on solaris

    Installed BOXIr3.1 on solaris using the oracle 11g as CMS database and oralce net client 10.2 as client database then we got the error after installation and the CMS is not starting. -- Sqlplus is working fine -- Recreated the SIA however its not wor

  • Why does Adobe think I'm not in the US?

    I'm trying to buy a Creative Cloud subscription and when I click buy now  I get a this messages: (I'm in Spokane, Washington, United States of America) Creative Cloud Membership isn't currently offered in your country or region (Wallis and Futuna), b

  • How to print a field on the last page of Smartform with more  of 2 pages?

    HI FRIENDS, I NEED TO PRINT ONLY ONE FIELD IN LAST PAGE OF FORM SMARTFORM HOW DO I CHECK last page. I tried WITH THE FIELDS OF TABLE SFSY BUT NOT worked.       The form has  more of  2 pages. Thank you. ROGERIO VAZ

  • Issue with Loading COMMENTS in HFM ICT Module from FDMEE

    Hi, We have a requirement wherein we can load all the HFM ICT Transactions from a Flat File using FDMEE. We are facing 2 issues:      a. Firstly FDMEE Target application allows us to map only COMMENT1 as a dimension for FDMEE. There is no Dimension/P

  • Auto send of PO via email once approved

    hi Gurus, We want to have an automatic sending of PO via email, once approved it is directly send to the vendor email no more t-code going to use. it is possible? what configuration we need to this set-up? thanks, Marina