Can 2+ J2EE Clusters use one UME

This might sound odd, but it's something I need for a transition. I have one J2EE cluster running Portal. It is using LDAP+DB for the UME. I have internal users stored in LDAP and a few external users stored in the DB. I need to create a new cluster that will provide access to a few web dynpro apps. This cluster will be located in a different datacenter.
Is there any way to automatically sync the DB users in the UME between these clusters without using LDAP as the central point?
Or perhaps have one cluster use the other one as a source for user master data?
My other option is to create the user twice, which is something I would like to avoid.
I know I can export the users from one and import into the other, but them I lose the password information.
Any Ideas?

Hi,
As far as my knowledge goes you can setup an central ABAP UME where all the users are stored in an ABAP system. I am not sure but I think that there is an similar option for LDAP (all users created only in LDAP).
I don't think there's the option to have a "central user storage" in your J2EE system.
Best regards, Dido

Similar Messages

  • Can two accounts just use one macbook.error occurred talking to the iTunes store

    I have two accounts(A and B), of course I just use one iphone and one macbook.
    but now ,the problem is,
    the account A can use xcode organizer to upload App,
    and the account B can't upload in the same MAC and Xcode,
    the error message is: error occurred talking to the iTunes store
    and the console print:  *** Error: An error occurred while deserializing the JSON request.  Error Message - Invalid JSON character read at index 0
    (of course if I change from account B to A, upload success)
    it cotinue for three days, of course there are many people have the same problem.
    must I buy another iphone ,another macbook,and install another xcode
    I am so sad.
    thank you

    the problem is ,  .ipa can't  upload by(in) account B
    I think the bug can be two possible list blow
          1.  the .ipa  is wrong
          2.  the account(B) is wrong.
    if   the .ipa is wrong  
    the .ipa can't upload  by any account (account A  or  account B,  just change the identifier and the sigh identity)
    but if the .ipa can upload success by  account A,
    so , the .ipa(program) is right.
    then, there is exist only one possible,   the account (B) is wrong,
    K T , do you thine my logic for this problem is right

  • Can two accounts just use one macbook and one iphone.error occurred talking to the iTunes store

    I have two accounts(A and B), of course I just use one iphone and one macbook.
    but now ,the problem is,
    the account A can use xcode organizer to upload App,
    and the account B can't upload in the same MAC and Xcode,
    the error message is: error occurred talking to the iTunes store
    and the console print:  *** Error: An error occurred while deserializing the JSON request.  Error Message - Invalid JSON character read at index 0
    (of course if I change from account B to A, upload success)
    it cotinue for three days, of course there are many people have the same problem.
    must I buy another iphone ,another macbook,and install another xcode
    I am so sad.
    thank you

    the problem is ,  .ipa can't  upload by(in) account B
    I think the bug can be two possible list blow
          1.  the .ipa  is wrong
          2.  the account(B) is wrong.
    if   the .ipa is wrong  
    the .ipa can't upload  by any account (account A  or  account B,  just change the identifier and the sigh identity)
    but if the .ipa can upload success by  account A,
    so , the .ipa(program) is right.
    then, there is exist only one possible,   the account (B) is wrong,
    K T , do you thine my logic for this problem is right

  • How can multiple family members use one account?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

    My children have iphones, ipads, ipods and mac books, my problem is how do you use home sharing with the devices and not get each others data.  My Husband just added his iphone to the account and got all of my daughters contacts.  I understand they could have there own accounts but if i buy music on itunes and both children want the same song, I don't feel i should have to pay for it twice.  Is there away we can have home sharing on the devices and they can pick and choose what they want? and is this icloud going to make it harder to keep their devices seperate?

  • How can I create harmony using one vocal

    I'm trying to learn how I can... Instead of having 3 people sing or one person sing all three parts, I can sing one part and somehow create the other 2 parts making harmony...??? I was wondering if it was Hermode Tuning but...???

    You can pitch-shift copies of tracks, with pitch-shifter or vocal transformer, or have the one track send to several busses with these plugs inserted, but really, doing it this way will tend to sound more like an effect than real harmonies, (even if you delay the shifted copies)
    To get authentic sounding harmonies, you need too record each part. (even recording each one in the same part and then shifting those tracks will sound better than working off the one recording)

  • Achieving functionality of many preferences using one context index

    Hi Gurus,
    We have a table of following format
    SCOTT@orcl_11gR2> insert all
    2 into test_sh values (1, 'Mark Antony')
    3 into test_sh values (2, 'Mark-Antony')
    4 into test_sh values (3, 'markantony' )
    5 into test_sh values (4, 'markantony' )
    6 into test_sh values (5, 'Cleopatra' )
    7 select * from dual
    8 / We need to achieve following functionality in this table
    1) fuzzy
    2) stem
    3) synonym
    4) near
    5) soundex
    6) As mentioned in thread Text Search help using ndata section
    7) As mentioned in thread Re: Phrase Serach with special charaters in between using a lexer preference
    Please guide me as to how to achieve everything in one shot.
    I was thinking to write individual select statement and then do a distinct of id as given below but if we need to achieve #6 and #7 we need to add
    a preference and other queries for sundex,stem etc will not work properly. Please guide me how I can achieve all functionality using one index.
    > select * from test_sh where id in
    select distinct id from (
    select id from test_sh where contains (text_nm ,'markantony') > 0
    union
    select id from test_sh where contains (text_nm ,fuzzy('markantony')) > 0
    union
    select id from test_sh where contains (text_nm ,fuzzy('!markantony')) > 0
    select id from test_sh where contains (text_nm ,fuzzy('$markantony')) > 0
    ) Thanks & Regards,
    Vikas Krishna

    I do not get the errror that you get and I get the correct results, as shown below. Please post a copy and paste of a complete test case, run from SQL*Plus, as I have done below.
    SCOTT@orcl_11gR2> create table test_sh
      2    (text_id  number,
      3       text      clob)
      4  /
    Table created.
    SCOTT@orcl_11gR2> insert all
      2  into test_sh values (1, 'Mark Antony')
      3  into test_sh values (2, 'MARK ANTONY')
      4  into test_sh values (3, 'mark antony')
      5  into test_sh values (4, 'MarkAntony')
      6  into test_sh values (5, 'MA RK ANTONY')
      7  into test_sh values (6, 'm a r k antony')
      8  into test_sh values (7, 'Cleopatra' )
      9  select * from dual
    10  /
    7 rows created.
    SCOTT@orcl_11gR2> begin
      2    ctx_ddl.create_preference ('nd_mcds', 'multi_column_datastore');
      3    ctx_ddl.set_attribute ('nd_mcds', 'columns', 'text nd, text text');
      4    ctx_ddl.create_section_group ('nd_sg', 'basic_section_group');
      5    ctx_ddl.add_ndata_section ('nd_sg', 'nd', 'nd');
      6    ctx_ddl.create_preference ('test_lex', 'basic_lexer');
      7    ctx_ddl.set_attribute ('test_lex', 'whitespace', '/\|-_+');
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> create index ix_test_sh
      2  on test_sh (text)
      3  indextype is ctxsys.context
      4  parameters
      5    ('datastore  nd_mcds
      6        section    group nd_sg
      7        lexer         test_lex')
      8  /
    Index created.
    SCOTT@orcl_11gR2> variable search_string varchar2(100)
    SCOTT@orcl_11gR2> column text format a30
    SCOTT@orcl_11gR2> exec :search_string := 'Mark Antony'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> select * from test_sh
      2  where  contains
      3             (text,
      4              'ndata (nd,' || :search_string || ') or
      5            syn (?!$' || replace (:search_string, ' ', ';?!$') || ')') > 0
      6  /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.
    SCOTT@orcl_11gR2> exec :search_string := 'MARK ANTONY'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.
    SCOTT@orcl_11gR2> exec :search_string := 'mark antony'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.
    SCOTT@orcl_11gR2> exec :search_string := 'MarkAntony'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.
    SCOTT@orcl_11gR2> exec :search_string := 'MA RK ANTONY'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.
    SCOTT@orcl_11gR2> exec :search_string := 'm a r k antony'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
       TEXT_ID TEXT
             1 Mark Antony
             2 MARK ANTONY
             3 mark antony
             4 MarkAntony
             5 MA RK ANTONY
             6 m a r k antony
    6 rows selected.

  • My daughter has a laptop and pc. Can she install and use CS6 on both machines?

    My daughter has a laptop and pc.  Can she install and use one license of CS6 on both machines?

    Yes. You can download, install & activate on up to two of your personal computers (e.g. a laptop and a desktop) as long as they are running the same operating system (e.g. both Macintosh or both Windows. Creative Suite licenses are platform specific.). You can find more details within the End User License Agreement at: http://www.adobe.com/products/eulas/#desktop

  • Can I put more than one user under one Apple ID account. I want to let other family members use imessage on their own Apple device. Or is there another way to get this end result?

    Can I put more than one user under one Apple ID account. I want to let other family members use imessage on their own Apple device. Or is there another way to get this end result?

    You can seach the net for solutions like this one http://appletvvpn.com/how-to-connect-apple-tv-2-to-vpn/ another idea is to use a PC as the control and fit that with a wireless card and set up a ad hoc wireless network that the Apple TV uses. 

  • Can I transfer info from one macbook to another by using a firewire cable?

    Can I transfer info from one mac to another by using a firewire cable?

    You can boot the computer that you would like to get the file from into target disk mode.
    This document will help you.
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8443.html

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

  • How can I use ONE Text search iView to event/affect mutliple Result Sets?

    hello everyone,
    i have a special situation in which i have 6 flat tables in my repository which all have a common field called Location ID (which is a lookup flat to the Locations table).
    i am trying to build a page with a free-form text search iView on Table #1 (search field = Location ID).  when I execute the search, the result set for Table #1 is properly updated, but how do I also get Result Set iViews for Tables #2-6 to also react to the event from Text Search for Table #1 so that they are updated?
    i don't want to have to build 6 different text search iViews (one for each table).  i just want to use ONE text search iView for all the different result set tables.  but, in the documentation and iView properties, the text search iView doesn't have any eventing.
    if you have any suggestions, please help.
    many thanks in advance,
    mm

    hello Donna,
    that should not be a problem, since you are detailw with result sets and detail iviews because custom eventing can be defined for those iviews.
    Yes, it says "no records" found because an active search and record selection havent' been performed for it (only your main table does).
    So, yes, define a custom event, and pass the appropriate parameters and you should be fine.
    Creating a custom event between a Result Set iView and an Item Details iView is easy and works. I have done it.
    See page 35 of the Portal Content Development Guide for a step-by-step example, which is what I used.
    For my particular situation, the problem I'm having is that I want the Search Text iView's event (i.e., when the Submit button is pressed) to be published to multiple iViews, all with different tables.  Those tables all share some common fields, which is what the Search iView has, so I'd like to pass the search critera to all of the iViews.
    -mm

  • Can I use one account for both my labtop and my ho...

    can I use one account for both my labtop and my home computer?
    Solved!
    Go to Solution.

    Softthunder wrote:
    can I use one account for both my labtop and my home computer?
    Hello,
    Yes you can. You can access your account using any Skype enabled computer/device in any country worldwide.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How can i use one SQL statement to solve problem?

    How can i use one SQL statement to solve the question below?
    For a Table named A, there is a column named F(char type).
    Now select all the records where F like '%00' and update their F value to '%01'
    Just one SQL statement.Do not use PL/SQL block.
    How to do that?
    Thanks.

    What is the data volume for this table?
    Do you expect lots of rows to have '%00' as their value?
    Following two statements come to mind. Other experts would be able to provide better alternatives:
    If you have index on SUBSTR(f, 2):
    UPDATE A
    SET    f = SUBSTR(f,
                      1,
                      length(f) - 2) || '01'
    WHERE  substr(f,
                  -2) = '00';If most of the rows have pattern '%00':
    UPDATE A
    SET    f = SUBSTR(f,
                      1,
                      length(f) - 2) ||
               DECODE(SUBSTR(f,
                             -2),
                      '00',
                      '01',
                      SUBSTR(f,
                             -2));

  • How can I use one gmail address on two different macbooks in 'mail'?

    I'm using one business gmail address. Me and my girlfriend both have a macbook. Now the gmail address is linked to my macbook. But she wants to use it as well. Unfortunately the 'mail' system won't allow her to sync with the gmail address. And I get messages from gmail saying that someone tried to log in to my account. Which is something I certainly want, but can't change. Does anyone now how I can use 1 gmail address on two different mac's? Thanks

    You may be able to change the suspicious account activity message alerts
    in your Gmail settings, and check that side of it, since I can use several
    means of accessing my Gmail and Google Accounts; and in the past had
    shared an account (not google) with another party half a world away when
    her email server went down for a month.
    The Mail software should not know the difference, unless the setup in there
    is not correct; if this is so, then more than what she says would be wrong.
    The Google mail Support help site pages should cover this adequately.
    Gmail Help - Google Help
    https://support.google.com/mail/?hl=en

  • How can i use one iCloud Photostream on 2 devices?

    Due to a bug (or feature) on iOS 8 i can't use the same icloud id on 2 iphones:
    https://discussions.apple.com/thread/6536998
    So how can i use ONE iCloud Photostream then on 2 devices?
    Also, on OSX i can define only one Photostream.
    So, how do you import pictures from 2 streams into iPhoto?
    Familyshare is not usefull as the pictures are not in Original-Filesize!

    Hi ..
    Yes. " iPhone 6 or 6 Plus.  iPad Air 2  or  iPad mini 3"
    Set up and use Apple Pay

Maybe you are looking for