AclOwner not owner error when implementing RDBMSRealm

I am implementing a RDMBSRealm on WL6.1sp1. When I add an ACL/permission and
grant it to a group, I got an error.
I tried the example RDBMSRealm. I found out that adding groups and acls are
actually persisted into the fileRealm,
Only adding users are persisted to the database. What did I miss? Any
suggestions will be appreciated.
java.lang.InternalError: aclOwner not owner
     at
weblogic.security.acl.internal.FileRealm.setPermission(FileRealm.java:871)
     at weblogic.security.acl.CachingRealm.setPermission(CachingRealm.java:1985)
     at
weblogic.management.internal.RemoteRealmManagerImpl.grantPermission(RemoteRe
almManagerImpl.java:270)
     at weblogic.management.configuration.Acl.grantPermission(Acl.java:72)
     at
weblogic.management.console.actions.realm.DoAclPermissionFormAction.perform(
DoAclPermissionFormAction.java:120)
     at
weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
rvlet.java:167)
     at
weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
let.java:85)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:265)
     at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:200)
     at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
ntext.java:2456)
     at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
:2039)
     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
--------------- nested within: ------------------
weblogic.management.configuration.RealmException: Acl.grantPermission - with
nested exception:
[java.lang.InternalError: aclOwner not owner]
     at weblogic.management.configuration.Acl.grantPermission(Acl.java:74)
     at
weblogic.management.console.actions.realm.DoAclPermissionFormAction.perform(
DoAclPermissionFormAction.java:120)
     at
weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
rvlet.java:167)
     at
weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
let.java:85)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:265)
     at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:200)
     at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
ntext.java:2456)
     at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
:2039)
     at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
     at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
Console Release Build6.1.1.0Server Release Build6.1.1.0Server BuildWebLogic
Server 6.1 SP1 09/18/2001 14:28:44 #138716 All Server Product
VersionsWebLogic Server 6.1 SP1 09/18/2001 14:28:44 #138716 WebLogic XML
Module 6.1 SP1 09/18/2001 14:43:02 #138716

Hey,
Are you guys trying to add functionality to the RDBMSRealm so that you can edit
ACLs in the database, using the WebLogic Console management tools? In other
words, is your final goal to be able to create (or remove) an ACL in your
console, and have the changes persisted to the database? I don't quite
understand what the problem is, based on the description. If you could
elaborate it would help me to understand what's going on.
Thanks
Joe Jerry
K Wong wrote:
I tried "unperson". Same error. Do I need to create this user "unperson" in
my db users table and put it "Administration" group?
The problem seems to be raised from weblogic...setPermission. I wish I could
debug into this code or at least System.out.println some contents.
"Marek Sz." <[email protected]> wrote in message
news:[email protected]...
Hi,
in oryginal example aclOwner is defined in RDBMSDelegate :
* This is the bogus owner associated with all ACLs found in the
* database.
protected Principal aclOwner = new User("unperson");
Ty to use this Principal.
Regards
Marek Sz.
K Wong wrote:
I am implementing a RDMBSRealm on WL6.1sp1. When I add an ACL/permission
and
grant it to a group, I got an error.
I tried the example RDBMSRealm. I found out that adding groups and aclsare
actually persisted into the fileRealm,
Only adding users are persisted to the database. What did I miss? Any
suggestions will be appreciated.
java.lang.InternalError: aclOwner not owner
at
weblogic.security.acl.internal.FileRealm.setPermission(FileRealm.java:871)
atweblogic.security.acl.CachingRealm.setPermission(CachingRealm.java:1985)
at
weblogic.management.internal.RemoteRealmManagerImpl.grantPermission(RemoteRe
almManagerImpl.java:270)
atweblogic.management.configuration.Acl.grantPermission(Acl.java:72)
at
weblogic.management.console.actions.realm.DoAclPermissionFormAction.perform(
DoAclPermissionFormAction.java:120)
at
weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
rvlet.java:167)
at
weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
let.java:85)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:265)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:200)
at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
ntext.java:2456)
at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
:2039)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
--------------- nested within: ------------------
weblogic.management.configuration.RealmException: Acl.grantPermission -with
nested exception:
[java.lang.InternalError: aclOwner not owner]
atweblogic.management.configuration.Acl.grantPermission(Acl.java:74)
at
weblogic.management.console.actions.realm.DoAclPermissionFormAction.perform(
DoAclPermissionFormAction.java:120)
at
weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
rvlet.java:167)
at
weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
let.java:85)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:265)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:200)
at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
ntext.java:2456)
at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
:2039)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
Console Release Build6.1.1.0Server Release Build6.1.1.0ServerBuildWebLogic
Server 6.1 SP1 09/18/2001 14:28:44 #138716 All Server Product
VersionsWebLogic Server 6.1 SP1 09/18/2001 14:28:44 #138716 WebLogicXML
Module 6.1 SP1 09/18/2001 14:43:02 #138716

Similar Messages

  • " Path not found() "error when implementing single sign on

    Hi,
    We are implementing single sign on so that when users click on the "Reports Login" he is navigated to the obiee presentation services screen. For the reports login we have a .asp page which directs to the presentation services.
    I have done the necessary changes in the instanceconfig and credentialstore xml files.
    I have been receiving a strange error when I click on the reports login. I get the error
    Path not found ()
    Error Details
    Error Codes: U9KP7Q94
    I have checked the presentation server log file and I see the below error
    Type: Error
    Severity: 45
    Time: Tue Mar 09 09:18:44 2010
    File: project/websubsystems/ssportal.cpp Line: 1907
    Properties: ThreadID-2672;HttpCommand-Dashboard;Proxy-;RemoteIP-127.0.0.1;User-;Impersonator-
    Location:
         saw.subsystem.portal
         saw.httpserver.request
         saw.rpc.server.responder
         saw.rpc.server
         saw.rpc.server.handleConnection
         saw.rpc.server.dispatch
         saw.threadPool
         saw.threads
    Path not found ()
    Can anyone provide me an input how to resolve this issue?
    This is bit urgent for me.
    Thanks

    Hi,
    Please ensure that the navigational attribute is checked at the attribute level and also at the Infocube level and also check that correct mapping of this navigational attribute is done at the Multiprovider level.
    Thanks,
    Venkat

  • Graphics tab in REBDBU: Internal error when implementing extension

    Hello,
    Seek your kind help please.
    I have entered in the building master data using REBDBE. We have a tab called Graphics. The pictures etc of the building are uploaded using a software called Korasoft. When i am clicking on the Graphics tab, it is entering the screen but immediately afterwards flashing the following message, "Internal error when implementing extension".
    Doing a F1 on the error message shows the foll details:
    "Diagnosis
    An internal error occurred during the implementation of a customer-specific enhancement. A CHANGE-API module was called with an object reference (parameter IO_OBJECT) that was not instantiated in the required activity for changing (02). The API modules are function modules and begin with API_RE_.
    Procedure
    Within the BAdI implementation, transfer the parameter IO_OBJECT from the BAdI method directly to the API module. Make sure that the transferred instance is allowed to be changed."
    I found that the SAP note 1139014 causes this error message to be generated. Note 1139014 forms a part of support pack level 13 (release 600). Recently we have upgraded our systems from support pack level 8 to support pack level 13. Naturally even this note got implemented at that time.
    But now this note is causing this error message and so I will be grateful if someone can please tell me how to rectify the error.
    Regards,
    Suvarghya Dutta
    Edited by: Suvarghya Dutta on Feb 11, 2009 5:30 PM

    Hi Fabio,
    I would kindly ask you appy the SAP note [1521903|https://service.sap.com/sap/support/notes/1521903] and proceed as described in the note to resolve the issue.
    Hope this information is helpful for you.
    Regards, Franz

  • Internal error when implementing extension

    Hello everyone
    At the moment I create a new contract (transaction RECN) an error occurs and I can not solve.
    Someone could help me?
    Internal error when implementing extension (see long text)
    Message no. RECAAP093
    Diagnosis
    Call of GET_EXTENSION( ) method for enhancement CL_FILACI_VICN01_EXTENSION failed.
    It tried to use an add-on or customer-specific enhancement that is not implemented in your system.
    To be able to determine the technical attributes of enhancement CL_FILACI_VICN01_EXTENSION, the RECA_STORABLE_EXT Business Add-In has to supply the desired information. However, this was not the case. In an implementation of RECA_STORABLE_EXT, the GET_OBJNAME_EXT( ) method must supply the required enhancement CL_FILACI_VICN01_EXTENSION.
    Below is example code for GET_OBJNAME_EXT( ):
    CASE ID_OBJNAME_STD.
        WHEN '...'.
          APPEND 'CL_FILACI_VICN01_EXTENSION' TO CT_OBJNAME_EXT.
      ENDCASE.
    For more information, refer to the documentation for the RECA_STORABLE_EXT Business Add-In.
    Start BAdI Builder
    Procedure
    Contact your system administrator.
    tks a lot!

    Hi Fabio,
    I would kindly ask you appy the SAP note [1521903|https://service.sap.com/sap/support/notes/1521903] and proceed as described in the note to resolve the issue.
    Hope this information is helpful for you.
    Regards, Franz

  • Get file not found error when I try to sync

    I get file not found error when I try to sync Iphone.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • RPC Server not Available error when using Windows Fax & Scan under Windows 7

    RPC Server not Available error when using Windows Fax & Scan under Windows 7

    Hi,
    On current situation, please remove the old fax account and re-add a new fax account in Windows Fax and Scan, then check if this issue sill exist. For more details, please refer to following similar thread and artilces.
    RPC Server not Available error when using Windows Fax & Scan
    under Windows
    The local fax account is inaccessible after you rename a Windows Vista-based computer
    Cannot send fax from Windows Vista/Windows 7 PC with “RPC Server not Available” error message
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    If any update, please feel free to let me know.
    Best regards,
    Justin Gu
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Getting Cost Center Does not exist error when executing BAPI_ACC_GL_POSTING

    Hi Champs,
    I am getting Cost Center Does not exist error when executing BAPI_ACC_GL_POSTING_CHECK.
    But when I checked for the particular Cost center, it is mapped to the same company code the program has got executed.
    Example:
    Cost center 1000/150402 does not exist on 17.11.2009.
    Cost center 1000/150402 does not exist
    Cost center 1000/150402 does not exist on 17.11.2009.
    Cost center 1000/150402 does not exist on 17.11.2009.
    Please let me know if you have any guess on this. It is very critical issue for me.
    Thanks for all your help in advance.
    With Best Regards,
    Ravi kanth Yechuri

    Use 0000150402 not 150402 .
    Rob

  • Getting Class not registered error when I run wmi queries

    Getting Class not registered error when I run win32 wmi queries. Eg:

    Specs: 
    Lenovo 3000 N100
    Windows Vista Home Premium
    Genuine Intel (R) CPU T2080 @ 1.73 GHz (2 CPUs)
    1014 MB RAM
    DirectX 10
    Intel(R) GMA 950 

  • Action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can

    action list not found error when trying to install Flash 11. I have IE8 and windows 32 bit. What can I do? Thanks

    Hi, Please try to download the installer from the links provided in the following page: http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    Thanks,
    Sunil

  • Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Out of curiosity, some here have recommended renaming an EXE file behind the scenes to eliminate that firewall message when starting up. Are you one of those folks that tried this? My thought is that if so, perhaps this is a result?
    Cheers... Rick

  • Operation not permitted error when comparing documents

    I get an "operation not permitted" error when trying to compare documents in adobe XI pro.

    They are secured.  I knew I couldn't edit but didn't realize compare wouldn't work.  Thanks.

  • How to catch thrown error when implementing HttpSessionBindingListener?

    I would like to write code to implement the class HttpSessionBindingListener for using the valueBound and valueUnBound method.
    As I have put some codes for inserting data in database when the valueBound method is invoked, I would like to catch the SQLException error when insertion fails. However, when i try the following:
    public class SessionTracker implements HttpSessionBindingListener
    throws Exception{
    Compilation error like the following appears:
    Class SessionTracker should be declared abstract; it does not define method valueUnbound(javax.servlet.http.HttpSessionBindingEvent) in interface javax.servlet.http.HttpSessionBindingListener
    My question is: How can I throw caught error?
    Thanks for replying!

    May be i should clarify a little bit?
    My question is: What error would the implemented method throw?

  • ODBC Error when implementing BI Apps on SQL Server

    Hey,
    we are implementing BI Apps using SQL Server as the warehouse database, and we are running into the following errors when viewing the out-of-the-box reports:
    [ODBC SQL Server Driver][SQL Server]'concat' is not a recognized built-in function name
    [ODBC SQL Server Driver][SQL Server]Incorrect syntax near 'NULLS'..
    It appears that the standard reports are using Oracle-specific SQL functions that are not available in SQL Server. Yet BI Apps is supposedly certified with SQL Server.
    Have anyone else run into this issue? If so, how did you get around it?
    Thanks,
    Yi

    Ah, sorry, I misunderstood.
    Yes, the CONCAT_SUPPORT feature is checked for both value and default. However, CONCAT_NULL_RETURNS_NULL is not checked. Should I check it?
    It's great to know that you have it working on SQL server. I must be missing some configuration then.
    Thanks,
    Yi

  • Unicode error when implementing a BADI

    Hi All,
    I get a Unicode error when trying to implement either one of these two BADIs: ME_GUI_PO_CUST, ME_PROCESS_PO_CUST:
    In Unicode programs, the "-" character cannot appear in names, as it does here in the name "MMCNT_EKKO-BEDAT".
    There are two more similar errors. They all refer to the type group MMCNT, which is an SAP delievered object and is active. Has anyone ever encountered these errors?
    Thanks!
    Roman D.

    Hi,
    You did not mention which version of SAP you're using, but I just thought that the OSS Note 829031 might be relevant for you.
    Regards,
    Anand Mandalika.

  • File not Found error when synching Ipod

    I have a fairly new Ipod and synced successfully for months, but now iTunes says it cant synch because of a "File not Found error" (no error number or other clues). I'm running the latest iTines and Ipod software, and I've reset USB drivers but still no luck. I cant reset the iPod itself becase I then got a "1418 error", which is why I then reset USB. I'm stuck, has anyone seen this before?
    The Ipod itself plays fine and Itunes recgnises it OK, albeit very slowly, even thought I'm using USB 2.
    One other piece of info; when this first happened, the sync must have first deleted the songs I no longer wanted, prior to unsuccesfully adding new ones. Those old songs show up on the iPod but are skipped when I try to play them.

    Its on the same thread as this one ("connecting iPod nano (second Generation ) to Windows"). Scroll through the authors, you will find it.

Maybe you are looking for

  • How to install Mountain Lion on my macbook pro MB990LL/A 2009?

    Hi, I have a big problem here.. I saw on internet that many people have installed on they're macbook pro MB990LL/A an OS like Snow Leopard, Lion, Mountain Lion. This weekend, I've tried to install Snow Leopard, and when I've inserted the disc in my m

  • Exporting BPs to application server

    Hi, I'm working in CRM 3.1 and need to export target groups to application server due to too large target groups. I found a note (459913) which seems to explain some of the procedure for how to configure this, but this note is actually a correction f

  • How do i put songs onto my nano?

    Hi sorry im new here but i got a nano for xmas and i dont know how to put my songs onto it. In the instruction booklet it says i can download them while my battery is charging. how do i do that? hopefully someone can help me   Windows XP  

  • EXEC SQL with IN Clause

    Hello, I'm trying to run an EXEC SQL statement with an IN clause.  Here's my SQL code: EXEC SQL.       OPEN C FOR       SELECT name              FROM sv_hoover_data              where dunsNum in :DUNS_NUMBERS     ENDEXEC. My DUNS_NUMBERS variable is

  • Update failed on After Effects CC. After Effects will not update!

    After Effects will not update! I have tried several times clicking the update button but soon after i click the button it says 'update failed' it has an option to learn more - if clicked, this is what would appear - Please Help!