Group naming in multiple realms

I am using a LDAP realm and the weblogic realm at the same time. I need to create
a group with the name mssess in the Weblogic realm. The group that in my LDAP realm
is also named mssess. Has anyone tried same group name in muliple realms? I cannot
get it to work.

I think wls will discard your group in the weblogic (file) realm because if
wls find a group
in the primary realm, which is LDAP in your case, it does not go on and look
up in the backup
file realm.
"Gary" <[email protected]> wrote in message
news:[email protected]..
>
I am using a LDAP realm and the weblogic realm at the same time. I need tocreate
a group with the name mssess in the Weblogic realm. The group that in myLDAP realm
is also named mssess. Has anyone tried same group name in muliple realms?I cannot
get it to work.

Similar Messages

  • Forgot-Your-Password process with multiple realms

    We’re running OAS 10.2.0.2 and we’re considering adding a second identity management realm in order to have, among other things, a different set of password reset validation fields for one group of portal users versus another group.
    With two realms in place and OID/SSO configured so that all users from both realms use a common login mechanism, and, presumably, one forgot-your-password mechanism, will the password rest validation fields that are enforced for a given user automatically be based on the realm of which they are a member?
    More specifically, will all users from both realms be able to use one common URL to access the OIDDAS forgot-your-password wizard? If so, I’m assuming that when the user enters their username in that wizard, they are then searched against their realm and the policies of that realm then come into play for the rest of the wizard, right?
    In other words, with two realms, is this scenario possible without any custom programming:
    We have a link to the OIDDAS forgot-your-password link on our existing portal login.jsp page. User A clicks that link and is taken to the OIDDAS forgot-your-password wizard. First he is asked for his username, which he supplies. Then, to verify his identity, he is asked for his Social Security Number, which he supplies, after which he is able to set a new password.
    User B, who is in a different realm, clicks the same forgot-your-password link on our login page. After supplying his username, he is asked for his employee I.D. number, which has been configured as the password reset validator in his realm. After supplying that number, he is able to change his password.
    --Steve Huntress                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Steve!
    AFAIK each OID realm has its own set of policies.
    This would mean that your setup should work. I guess the only difficult thing would be that a user must somehow be uniquely identifiable. When you login into OID with multiple realms you need to supply the realm - or have a unique ID (eg email address) and OID must be setup to search from the top.
    In order to get to the right forget your pwd wizard you need the realm.
    cu
    Andreas

  • Support for multiple realms in JAZN

    Hello,
    I am trying to write a security application for users across multiple JAZN realms. In my jazn.xml, I have to specify a default realm against which I wanna authenticate my user. But I want to authenticate users from multiple realms and so I wanna specify realm name dynamically(may be from a form with drop down list of all realms). Does anybody has any idea about this?
    If I don't specify my default realm in my jazn.xml file,
    application does not work. It does not authenticate user.
    I don't wanna use LDAP based or database provider. I am using jazn-data.xml as data provider.
    Any help is appreciated.
    Thanks.

    I also have the same requirement.
    Does anyone has any idea , how to solve this ?
    Sheetal if u have resolved this , please let me know the solution.
    Regards
    Shrikant

  • Count(*) , group by with multiple columns from multiple tables involved

    Hi all,
    I am relatively new to SQL.
    Currently I have these few requirements, to display quite a number of fields from 3 tables for display of report.
    In my query I need to:
    1.) count(*)
    2.) select quite a number of fields from table 1,2,3
    However when count(*) is used, grouped by has to be used to.
    How do I actually use group by with so many columns to be selected?
    I have actually used the query below, but the count(*) returns 1, the correct output should be 3 instead.
    select count(*), table1.col1, table1.col2, table1.col3, table2.col3, table2.col4, table2.col6, table3.col1, table3.col4, table3.col5
    from table1, table2, table3
    where
    <conditions>........................
    group by table1.col1, table1.col2, table1.col3, table2.col3, table2.col4, table2.col6, table3.col1, table3.col4, table3.col5
    I know this group by statement looks very unrefined. How can I select multiple fields from different tables, and yet get the count(*) correctly?
    Thank you so much for your time.

    Hmm yes it actually does return count as 1 for each row. But there are 3 rows returned. E.g.
    ctr table1.col1 table1.col2 ..........
    1 value1 value1
    1 value2 value3
    1 value3 value4
    If I put the count(*) outside, it returns 3 , the correct output
    ctr
    3
    select count(*) from
    select table1.col1, table1.col2, table1.col3, table2.col3, table2.col4, table2.col6, table3.col1, table3.col4, table3.col5
    from table1, table2, table3
    where
    <conditions>
    group by table1.col1, table1.col2, table1.col3, table2.col3, table2.col4, table2.col6, table3.col1, table3.col4, table3.col5
    Thus I was wondering if it was the group by of multiple colns that resulted in the count stucked at value 1.

  • Multiple Realms in Apache Tomcat

    Sorry, if this is the wrong forum, but its the closest match i could find.
    I am trying to run 2 servlets that use apache tomcat's j_security with a FORM login to authenticate clients. I would like these 2 servlets to be authenticated by having j_security look in two different tables in a MS SQL 2000 Server database.
    I have read up a lot on apache tomcat's site, and the sense that i've made of it is that i need to have multiple realms, and in order to do that i need multiple contexts. I've tried wrapping my realm tag in a context tag but it doesn't work. What am i missing?
    thanks.
    <Context path="/servlet/" docBase="ROOT/WEB-INF/classes" reloadable="true" />
              <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
         driverName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
         connectionName="sa" connectionPassword="******"
         connectionURL="jdbc:microsoft:sqlserver://localhost:1433;databaseName=ConcernCheck;selectMethod=cursor;"
    userTable="Operator" userNameCol="Username" userCredCol="Password"
         userRoleTable="Operator" roleNameCol="Role" />
    </Context>
    Thanks

    Hi!
    I have the same problem! did you solve this problem? can you give me a hint?
    Tnx,
    Stanislav

  • How to create default groups in Weblogic- Security Realms -- Groups

    Hi Team,
    Unfortunately I have deleted some default groups from Weblogic->Security Realms --> Groups. How to add the groups.
    Regards,
    Ravi.

    Hi Ravi,
    These are the defaults groups present inside Security Realms ,you can manually create them by
    Going inside Security Realms-->Users and Groups-->Groups-->New
    Administrators----Administrators can view and modify all resource attributes and start and stop servers-----------------------DefaultAuthenticator
    Deployers---------Deployers can view all resource attributes and deploy applications.---------------------------------------------DefaultAuthenticator
    Monitors-----------Monitors can view and modify all resource attributes and perform operations not restricted by roles.------DefaultAuthenticator
    Operators---------Operators can view and modify all resource attributes and perform server lifecycle operations.-------------DefaultAuthenticator
    Restart the Admin Server
    Regards
    FAbian

  • The specified user could not be found - ADFS with multiple realms

    I am using a single trusted identity token issuer (ADFS 2.0) with multiple realms for different sites (urn:sharepoint:int-site1 and urn:sharepoint:int-site2).  I added my provider to both sites through central administration and the first site works
    fine and allows my external user to authenticate.  The second site gives me an access denied page (which I expected) and asks that I request access.  When I submit the request for access I get an error message back stating "The
    specified user [email protected] could not be found".  What could I be missing?

    Hi Drew,
    According to your description. My understanding is that you encountered the error "The specified user [email protected] could not be found“ when you try to login the second site. For resolving your
    issue ,please take steps as below:
    1.Go to site settings->Site Permissions->Access Request Settings.
    2.Check  the access request send to whom, whether he approve your access request, before you logon.
    Reference:http://blogs.msdn.com/b/russmax/archive/2011/03/15/want-to-use-manage-access-requests-feature-in-sharepoint-2010.aspx
    Please inform me freely if you have any questions.
    Thanks
    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.

  • Find average at group level of multiple grouped fields

    Can this not be done in Crystal
    I am trying to total and average at the group level like this:
    ((Sum ({@Unscheduled}, {@monthName}))/(Sum ({@total}, {@monthName}))*100)
    --  {@Unscheduled} =           if ({Table_Name.status} = "Unscheduled" and not({Table_Name.StartDate}>= currentdate))
    then 1
    I am grouping by month. The formula {@Unscheduled} gave me the total for each month of that ticket type and I was able to sum 3 other ticket types and sum total of all ticket types. But when I try to find the average of each with this
    ((Sum ({@Unscheduled}, {@monthName}))/(Sum ({@total}, {@monthName}))*100)
    I get an error saying division canu2019t be done with zero, but there are no zeros  when shown separately on the report.
    I guess my question is Can you not perform calculations at the group level with multiple fields.
    Any insight would be appreciated and I apologize if this is somewhat incoherent.

    You could do this like this, I think:
    If Sum ({@total}, {@monthName}) = 0 Then
        0
    Else
        Sum ({@Unscheduled}, {@monthName}) / Sum ({@total}, {@monthName}) * 100;

  • Naming of multiple Date Dimensions - Logical Layer

    I would like to get some advice on the following:
    I am currently in the process of organizing all the dimensions and facts. During the organizing I have 12 different Date Dimensions. Some facts are join to 6 of those Date Dimensions. With each of the date dimensions, all of them have the same number of columns and names. Therefore, if I am creating a report, carry over the month of Delivery Date Dimension - Calendar Month lets say and Cancel Date Dimension - Calendar Month and then proceed to the results tabs, you will see two columns "Calendar Month" You wont know which one is from the Cancel Dimension or the Delivery Date Dimension. So we have to manually rename them in OBIEE. But I would like to rename them in the BMM/logical layer instead so the end user doesn't have to rename them each time. What I would like to get advice on is how did you implement the naming of multiple Date Dimensions. Cancel Date Calendar Month or Cancel MM etc? I don't want it too long then the column is very wide in the report.
    Any advice is much appreciated!
    thank you,
    Jonathan

    Thank you,
    I read almost every best practice, but not much information around the Date Dimensions, just wondering if anyone has some great ideas around the Data Dimensions?
    Thanks
    Jonathan

  • Multiple Realms in IM

    Does anyone know if all of the applications in OCS 10g recognize multiple realms yet? In 9042 only content management did.
    thanks

    I opened a tar, the answer still is that only content management can interact with multiple realms in such a way as to provide multi-tenancy. Other/all apps will do the same in "future" releases.
    Message was edited by:
    [email protected]

  • Multiple Realms - What good are they?

    If I create multiple realms in WL7 domain, how are they used by the server
    to auth/auth a user? Is the default realm always used and the other realms
    used only in case of failure?
    Is there a way to configure an enterprise application to use a particular
    realm for its auth/auth? Or do all applications always use the default
    realm. It would be cool if weblogic-application.xml had a <default-realm>
    element.
    -Greg
    Check out my WebLogic 6.1 Workbook for O'Reilly EJB Third Edition
    www.amazon.com/exec/obidos/ASIN/1931822468 or www.titan-books.com

    "Greg Nyberg" <greg.nyberg.at.objectpartners.com> wrote:
    If I create multiple realms in WL7 domain, how are they used by the server
    to auth/auth a user? I newer managed to get any more that 1 security realm active at one time. (WL 6.1)
    I think it is not really possible.
    Please someone prove me to be wrong.

  • Multiple Realms, Weblogic 6.1?

    Hoping someone knows the answer to this:
    Can you set up multiple realms in weblogic 6.1 and have different
    applications default to different realms (using out of the box
    weblogic security)?
    And is it any different in 7.0?
    Tia
    VC

    nope.. it's not possible either in 70/6x
    thanks
    kiran
    "Simon VC -Qantas" <[email protected]> wrote in message
    news:[email protected]..
    Hoping someone knows the answer to this:
    Can you set up multiple realms in weblogic 6.1 and have different
    applications default to different realms (using out of the box
    weblogic security)?
    And is it any different in 7.0?
    Tia
    VC

  • OID multiple realms log in issue

    Hi All,
    I am using OID in a prototype to store users in different organizations. I have done this by creating multiple realms. I am configuring OID with OBIEE so users in OID can log into OBIEE. I am facing an issue when 2 users have the same userid to log into OBIEE. It allows one user to log in successfully but prevents the 2nd one.
    Is there a way I can resolve this issue in OID.
    Thanks

    I installed it on windows using the sql scripts instead of the sh scripts.

  • GROUP BY with multiple columns.

    I have little query about GROUP BY clause.
    Sometimes we will give multiple column names in GROUP BY .If it behaves in the same way as ORDER BY (multiple columns) i would love to have an example where I can use GROUP BY multiple columns. Anyways howsoever it behaves it will be really appreciated if anyone can explain a scenario where GROUP BY with multiple columns can be used.
    I know about the usage of aggregate functions with GROUP BY but using only one column.
    Thanks..!!!

    Hi,
    Group by is used for grouping of same records. check this bellow scenario
    SELECT registrationid, dateofbirth, age FROM prawin62 WHERE registrationid = 22;
    22     1/23/1975     54
    22     5/18/2011     66
    22     5/18/2011     66
    22     5/18/2011     66
    22     5/18/2011     66
    22     5/18/2011     66SELECT registrationid, sum(age) FROM prawin62 WHERE registrationid = 22 GROUP BY registrationid;
    22     384SELECT registrationid, dateofbirth, sum(age) FROM prawin62 WHERE registrationid = 22 GROUP BY registrationid, dateofbirth ;
    22     5/18/2011     330
    22     1/23/1975     54Thanks,
    Praveen

  • Log in screen has group named "other"

    The Log in screen has a group named "other"
    I do not know where this is from
    who ever has password can accress machine
    In System Preferences this account does not show
    Could it have secret Admin priviledges?
    How can I remove it?
    I think it should be impossible for a log in account to be hidden

    I followed the suggestion to re set root.
    Click the lock in the Directory Utility window.
    Enter an administrator account name and password, then click OK.
    Choose Enable Root User from the Edit menu.
    Enter the root password you wish to use in both the Password and Verify fields, then click OK.
    The Directory Utility window lock was already unlocked
    There was no field to enter an administratro accout name and password
    therefore could not get to edit menu
    only option was to click on lock to lock it
    since I do not know if the root PW has been changed or to what I did not close the lock

Maybe you are looking for

  • Activation of transformation in BI 7.0

    Hi to all, I have to activate transformation in production environment , Kindly let me know any Function module or prog. name to activate the same. I am working in BI 7.0. Thanks Shalini

  • Discrepancy between VBR files in ITunes

    I've noticed that all of my VBR mp3 files show different bitrates in iTunes 9.0.1.8 compared to Windows Explorer. For example, in Windows Explorer an mp3 file may be listed as 320kbps but in iTunes it shows up as 187kbps(VBR). Can anyone help explain

  • Unmountable Boot Vol on Pavilion g4-1015dx notebook running Win7

    My hp Pavilion g4-1015dx Notebook PC running Windows 7 will not boot. I get a blue screen with some comments including  the following.... REM Mode1  : REM Caption :  WDC...ATA Device REM Device ID  : \\.\PHYSICALDRIVE0 REM SCSIBus: 0 REM SCSIPort: 0

  • Binding a sequence XSD Schema to repeating subform elements

    Hi, I am creating a form with repeated table rows using an Add button to add rows dynamically. I am binding the row with the xsd schema with [*] at the end in the data binding option with checked repeat row for each data item. While submitting the fo

  • Looking for product to page thru phones

    We have an office that requires paging thru phones and does't want to hang speakers. We have CUCM7.1 Are there any good paging systems anyone can recommend? Thanks Matt