RepositoryRuntimeException when commiting a final merged inventory

Hi,
I'm using the propagation tool on a Weblogic Portal 10.2 installation to export and import portal configurations.
We have no need for content management so we have no content repository configured. The content-config.xml doesn't include any
<content-store>.
The repositoryConfigCache is enabled in the p13n-cache-config.xml with a non zero size.
In this configuration all online commit operation fails with "Error getting repositories". If I add a content repository the commit works.
Is the a way to have the commit work with no content repository configured at all ?
The scope file contains :
scope_0=Application\:PersonalizationService
scope_1=Application\:portalservices
scope_2=Application\:SecurityService
The policy file is as follows:
policy_0_taxonomy=Application:PersonalizationService
policy_0_adds=Y
policy_0_updates=Y
policy_0_deletes=Y
policy_1_taxonomy=Application:portalservices
policy_1_adds=Y
policy_1_updates=Y
policy_1_deletes=Y
policy_2_taxonomy=Application:SecurityService
policy_2_adds=Y
policy_2_updates=Y
policy_2_deletes=Y
The commit command is:
<onlineCommit
allowHttp="true"
failOnError="true"
servletURL="${servletUrl}"
username="${access.userName}"
password="${access.userPass}"
logFile="${loggingDirectory}/${commitInventoryLogFileName}">
<modifier name="allowNonAdminUser"
value="false" />
<modifier name="allowSecurityOutOfSync"
value="false" />
<modifier name="allowMaintenanceModeDisabled"
value="false"/>
<modifier name="differenceStrategy"
value="optimistic" />
<modifier name="doAdds"
value="true"/>
<modifier name="doUpdates"
value="true" />
<modifier name="doDeletes"
value="false" />
</onlineCommit>
Here is the stack trace :
<1278421618370> <BEA-000000> <The [Commit] operation is halting due to the following failure: EJB Exception: : com.bea.content.RepositoryRuntimeException: Error getting repositories.
     at com.bea.content.manager.internal.RepositoryConfigHelper.getRepositoryConfigMap(RepositoryConfigHelper.java:139)
     at com.bea.content.manager.internal.RepositoryOpsBean.getRepositoryConfigMap(RepositoryOpsBean.java:82)
     at com.bea.content.manager.internal.RepositoryOpsEJB_y9bnjx_ELOImpl.getRepositoryConfigMap(RepositoryOpsEJB_y9bnjx_ELOImpl.java:68)
     at com.bea.content.federated.internal.VirtualRepositoryManagerImpl.getRepositoryConfigMap(VirtualRepositoryManagerImpl.java:79)
     at com.bea.propagation.content.online.hierarchy.ContentServiceHierarchy.discoverChildren(ContentServiceHierarchy.java:161)
     at com.bea.propagation.framework.hierarchy.ListNodeHierarchy.getChildrenNodes(ListNodeHierarchy.java:113)
     at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:213)
     at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst_Recur(InventoryTreeWalker.java:222)
     at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:156)
     at com.bea.propagation.framework.InventoryTreeWalker.walkDepthFirst(InventoryTreeWalker.java:74)
     at com.bea.propagation.framework.tool.computer.DependencyComputer.computeDependencies(DependencyComputer.java:132)
     at com.bea.propagation.framework.tool.computer.DependencyComputer.computeDependencies(DependencyComputer.java:98)
     at com.bea.propagation.framework.tool.resolver.TreeResolver.resolveTree(TreeResolver.java:299)
     at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.commitOperation(InventoryManagementServlet.java:816)
     at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doOperation(InventoryManagementServlet.java:301)
     at com.bea.propagation.framework.tool.servlet.InventoryManagementServlet.doPost(InventoryManagementServlet.java:200)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3393)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(Unknown Source)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
; nested exception is: com.bea.content.RepositoryRuntimeException: Error getting repositories.>
Thanks,
Philippe

You could use a popup listener to identify the final selection. The popup listener will store the previous selection, and everytime the popup is made invisible you can check whether the new selection is different from the previous selection. If it is, then you notify whoever you need to notify. Example program,
import javax.swing.*;
import javax.swing.event.PopupMenuListener;
import javax.swing.event.PopupMenuEvent;
public class Tester {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new Tester();
    JComboBox theBox;
    public Tester() {
        JFrame frame = new JFrame();
        theBox = new JComboBox(new String[]{"One","Two","Three"});
        theBox.addPopupMenuListener(new FinalSelectionListener());
        frame.setContentPane(theBox);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);
    private class FinalSelectionListener implements PopupMenuListener {
        private Object oldSelectedItem;
        public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
            Object newSelectedItem = theBox.getSelectedItem();
            if(newSelectedItem != oldSelectedItem) {
                oldSelectedItem = newSelectedItem;
                selectionChanged(newSelectedItem);
        public void popupMenuWillBecomeVisible(PopupMenuEvent e) {}
        public void popupMenuCanceled(PopupMenuEvent e) {}
    private void selectionChanged(Object changedTo) {
        System.out.println("The selection was changed to: " + changedTo);
}This way new selections can be made only when the combo box popup is closed. Hence it will still work with the mouse, and it won't have the action event problem mentioned in the bug.

Similar Messages

  • "media server application expectly quit" when submitting from final cut pro

    browsing through the list, it seems the problem couldn´t be solved so far.
    doing some systematic testing, the following riddle shows up:
    ... when adding a QT ref movie (or movie) directly to the compressor batch list and submit to the cluster, everything runs fine.
    ... when exporting from final cut pro:
    menu -> export -> using compressor ...
    submitting in compressor using:
    1) Cluster: this computer: everything keeps running fine.
    2) Cluster: MylovelyCluster ....
    the job fails with the message "Failed: HOST [clusternode_name.local] media server application unexpectedly quit"
    since there is 5TB + of data to be compressed, copying files to the render nodes is not an option. all data is on a shared xraid, connected via giganet.
    Any ideas, any hints appreciated !
    regards,
    p.s. Anybody running an XSAN having the same issues?
    G5s, G4s, G3s, macminis, powerbooks   Mac OS X (10.4.7)   xraid

    ... well, the answer is in other topics.
    showstopper explains it patently again and again ...
    thanks from here.
    shortly: when submitting from FCP, every node HAS to have FCP installed and MUST have access to the same relative file path (mounted shared volume). If the volume is not present, the render node will open the reconnect media dialogue and waits for user input.

  • Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix.

    Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix. Worked fine until now. Thanks

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • ALL OF MY FILES ARE NOT BEING SAVED WHEN I CLOSE FINAL CUT PRO X ?

    ALL OF MY FILES ARE NOT BEING SAVED WHEN I CLOSE FINAL CUT PRO X ?

    WHAT FILES AREN'T BEING SAVED? WHAT FILES ARE SAVED?

  • When i opened final cut pro x, EVERYTHING WAS COMPLETELY GONE, i had about 4 years worth of footage and editing what do i do please help!?!?!?!?!?!?!?!

    when i opened final cut pro x, everything was gone.

    so this means that all my work isn't completely gone?
    Your work will still be there, you just have to go through Updating your older pre 10.1. stuff to the new Library model way of doing things.
    Follow Tom's suggestions to the letter and things should go smoothly.
    Al

  • Shipping status becomes backordered even when item is present in inventory

    Hi,
    1.The shipping status becomes 'Back ordered' after pick ship release process.
    2.The onhand quantity form(inventory-->on-hand,Availability--->on-hand quantity)
    shows zero(even when 100 qty is present) when queried for that particular item.
    3.When tried increasing the quantity (inventory--->transactions-->miscellaneous transaction)it shows 100 quantity available. If i try adding more it shows the following error:
    APP-INV-05647:The remote call failed because no manager was available.
    I checked the following.
    1.The status of the four interface managers are active.
    2.The columns for "Available" and "Target" for the Inventory Manager and the Remote Procedure Manager were not equal and tried restarting them. Even then the numbers are not equal.
    how to solve this problem?
    Thanks & Regards,
    Nithya

    Hi,
    Probably the quantity you are seeing in the ATP form must be reserved and so your pick release is getting backordered.
    I did a quick Metalink search for your error, and the following is the result:
    fact: Oracle Work In Process 11.5.3
    fact: WIPTXSFM - Move Transactions
    symptom: Receive error when processing WIP transactions
    symptom: APP-INV-05647 The Remote call failed because no manager was
    available
    symptom: Locks for the process INVTRM in table
    MTL_MATERIAL_TRANSACTIONS_TEMP
    cause: The cause of this problem is still undetermined.
    fix:
    Update file wipsorvb.pls to version 115.26 or higher. Apply Patch 2084821 or
    later.
    Someone else tried the following :
    Change the following profile option :
    TP:Server Side Online Processing = No
    and this solved their problem.
    Try it out and check whether this resolves your issue.
    HTH

  • Why do I keep getting a Video rendering error: 10008 when exporting in Final Cut Pro X?

    Why do I keep getting a Video rendering error: 10008 when exporting in Final Cut Pro X?
    I'm using FCPX 10.2
    Yosemite 10.10.3
    MacBook Pro (13-inch, Early 2011)
    2.7 GHz Intel Core i7
    8 GB 1333 MHz DDR3
    500GB with 308GB free

    It appears Apple's latest update has solved the issue. Whew!
    MacBook Pro (13-inch, Early 2011)
    2.7 GHz Intel Core i7
    8 GB 1333 MHz DDR3
    500GB with 308GB free
    Yosemite 10.10.3
    FCPX 10.2

  • Do I need Final Cut Pro HD when I have Final Cut Studio?

    I will be starting my second project on my new mac and using final cut pro. It will be an instructional DVD. This is my first posting and I guess my first attempt at reaching out (baby steps).
    I will be borrowing an HD camera (some consumer grade). My Question is do I need Final Cut HD when I have Final Cut Studio installed. I notice Final Cut Pro 5.1.4 has HD import and export settings.
    Also, since I have mentioned my project is there any quick reference ideas for a learn to play an instrument DVD, CD or anything.
    And lastly as I wonder off my thread a little. Is this Discussion forum my quickest way of getting an answer, I mean is there anyone who will let me bug them from time to time?
    Thanks
    Mac Pro 1,1 Mac OS X (10.4.9) 2X2 GHz Dual-Core Intel Xeon 1 GB Ram
    Mac Pro 1,1 Mac OS X (10.4.9) 2X2 GHz Dual-Core Intel Xeon 1 GB Ram
    Mac Pro 1,1   Mac OS X (10.4.9)   2X2 GHz Dual-Core Intel Xeon 1 GB Ram

    I will be borrowing an HD camera (some consumer grade).
    Forgot to welcome you to the forum... Welcome.
    Before you jump into this project you may want to do some research. The format you are talking about is HDV, highly compressed and some would say difficult to edit with. A search here on HDV will give you plenty to read and probably point you to some interesting articles.
    Might also consider why you want to shoot HD at all right now since you will most likely be going to Standard Def for distribution.
    You'll find that if you just check in and browse the topics every day or so you'll pick up lots of good information (and probably a few laughs)
    If you're looking for examples for this type of project, just hop down to your local music store. Most have "How To" DVD's for sale.
    Good Luck
    rh

  • Dire grove game crashes when I try to use inventory items

    Dire grove game crashes when I try to use inventory items in closeup views. I have reloaded game,did a restart of ipad nothing has worked.
    Any help would be great
    Jtw560

    I get the add-on manager start to load up but then it crashes after a few seconds, if I try to click extentions or something else it still has the same effect of the browser crashing! Please help

  • When is Siri final version out and will it support UK business search?

    When is Siri final version out and will it support UK business search?

    Sorry, but we're all just fellow users here and have no information as to what Siri will offer in any given country at any point.
    Regards.

  • "Unable to read or process latte file" message when attempting to photo merge out of photoshop cc, bridge, essentials organizer or editor.  Search of "latte file" brings no explanation on the web.  What's going on?  Help?

    "Unable to read or process latte file" message when attempting to photo merge out of photoshop cc, bridge, essentials organizer or editor.  Search of "latte file" brings no explanation on the web.  What's going on?  Help?

    From the web:
    Templating | Nette Framework
    "One of the best template engines is part of Nette Framework and it is called Latte."
    Were you working on a web document or something?
    I have no clue myself.

  • Why do I get a conversion failure every time when I try to merge documents together???

    Why do I get a conversion failure every time when I try to merge documents together???

    Hi mdrhine,
    I'm sorry that you've been unable to merge files. Let's see what we can figure out.
    Are you unable to merge any files? How large are the files that you're trying to merge, and how many are you trying to merge at once?
    If you're merging more than a few files, or those files are particularly large, ttry merging those files in smaller batches. If one or more files is causing the conversion failure, merging in smaller batches should help you isolate the problematic file or files.
    I look forward to hearing back from you with some details about the files that you're trying to merge.
    Best,
    Sara

  • Encountered problem(s) when trying to collect OUI inventory

    Hi,
    In the dbconsole of the EM show de message "Encountered problem(s) when trying to collect OUI inventory : Failed to collect OUI inventory: no oraInstaller in java.library.path Failed to collect OUI inventory: null". what is the problem ?
    Thanks.
    O.S. Windows Server 2003 R2 x64

    Thanks Eric Jenkinson, I have not found errors in with Opatch.
    I enclose result to you:
    GRAVE:OPatch invoked as follows: 'lsinventory '
    INFO:Starting LsInventorySession at Thu Jan 04 11:18:06 CET 2007
    INFO:Lsinventory Output file location : C:\oracle\product\10.2.0\db_1 \cfgtoollogs\opatch\lsinv\lsinventory-2007_Jan_04_11-18-06-CET_Thu.txt
    INFO:--------------------------------------------------------------------------------
    INFO:Productos de nivel superior instalados (1):
    INFO:Oracle Database 10g 10.2.0.1.0
    INFO:Hay 1 productos instalados en este directorio raíz de Oracle.
    INFO:
    INFO:No hay parches temporales instalados en este directorio raíz de Oracle.
    INFO:
    INFO:--------------------------------------------------------------------------------
    INFO:Finishing LsInventorySession at Thu Jan 04 11:18:07 CET 2007
    I have not found either errors that make reference to the problem of the inventory in the archives that you indicate. But that I have found the following errors in the emagentfetchlet.log file:
    007-01-04 11:07:54,921 [main] WARN track.OracleInventory collectInventory.683 - Check emd.properties for OUI classpath entries.
    2007-01-04 11:07:54,984 [main] WARN track.OracleInventory collectInventory.683 - Check emd.properties for OUI classpath entries.
    2007-01-04 11:07:54,984 [main] ERROR track.SnapshotFactory collectSnapshot.240 - ECM: Error occurred while collecting Oracle Software: Encountered problem(s) when trying to collect OUI inventory :
    Failed to collect OUI inventory: no oraInstaller in java.library.path
    Failed to collect OUI inventory: null oracle.sysman.comm.ecm.trk.GettingComponentException: Encountered problem(s) when trying to collect OUI inventory :
    Failed to collect OUI inventory: no oraInstaller in java.library.path
    Failed to collect OUI inventory: null
    at oracle.sysman.emd.ecm.track.OracleInventory.createLiveSnapshotComponent(OracleInventory.java:336)
    at oracle.sysman.emd.ecm.track.InventorySnapshotComponentType.createLiveSnapshotComponent(InventorySnapshotComponentType.java:88)
    at oracle.sysman.emd.ecm.track.SnapshotFactory.collectSnapshot(SnapshotFactory.java:203)
    at oracle.sysman.emd.ecm.track.SnapshotFactory.main(SnapshotFactory.java:358)
    What problem that this happening? Thanks for the help !

  • I got a write permission error when i was finalizing my iMovie.  What should i do

    I got a write permission errow when I was finalizing my iMovie.  What should I do?

    Are you running Time Machine? If so, there is a bug. You can solve this by
    1) Go to System Preferences/Time Machine Preferences and turn off Time Machine
    2) Now Share or Finalize your movie
    3) Don't forget to go back and turn Time Machine back on

  • Color differences when exporting from Final Cut

    I have a big problem when exporting from Final cut to any file format. The colors and contrast looks fine in Final cut and on my external monitor but when exporting to, for example, H.264 I get a file that is "washed out". Colors are bleak and the over all feel is not what I expect. The funny thing is that if I import the exported file into Final cut it looks fine. What am I doing wrong? Can anyone help me out with this?

    QT brightens the image. Dunno why...perhaps so that it ensures that every monitor can see it?
    Here is an example:
    But I don't know why that is.
    Shane

Maybe you are looking for

  • Ipod touch is not showing up in iTunes.

    I have attempted to reset it It has been on both mac and windows computers with no success Multiple ports have been used on both It does not show up in Finder or My Computer I have done all of Apple's applicable troubleshooting When attempting to res

  • Forgot my Time Capsule password.

    I forgot my Time Capsule password--or rather, I am trying to enter the password that aI estblished (which I wrote down!!!) but it seems not to be working. I have tried to follow the instructions for a soft reset (i.e., hold in the reset button for on

  • Unknown PIOS Exception

    Helle everybody. I am trying to print to Zebra QL 420 on PSION Workabout Pro (PPC2003 / MI 7.0 Sp09/ Connector 1.1.6 / QL420 driver 1.1.6). The following code is the printer call: printer = Printer.getGraphicPrinter(); PrinterFont font = printer.getF

  • Hp photosmart C6150 invalid WPA passphrase with new airport base station

    Okay, I had the old flying saucer type base station that worked great wirelessly with my HP all in one C6150 printer. I upgraded to the new square base station and printer still worked fine. Then about a week ago, my printer can no longer find the ne

  • [svn:fx-trunk] 10526: Temporary workaround for A+ bug SDK-23387.

    Revision: 10526 Author:   [email protected] Date:     2009-09-22 21:48:33 -0700 (Tue, 22 Sep 2009) Log Message: Temporary workaround for A+ bug SDK-23387. The LinkNormalFormat, LinkHoverFormat, and LinkActiveFormat classes have been removed from FXG,