UPDATE XI CACHE

Hi folks,
I have the following scenario:
SOAP->XI->RFC
This scenario works fine in DEV machine.
I passed this scenario for QUA machine.
When I executed the development, I had an error
- <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
<SAP:Category>XIServer</SAP:Category>
<SAP:Code area="XICACHE">UPDATE</SAP:Code>
<SAP:P1 />
<SAP:P2 />
<SAP:P3 />
<SAP:P4 />
<SAP:AdditionalText>HTTP status code401 Unauthorized</SAP:AdditionalText>
<SAP:ApplicationFaultMessage namespace="" />
<SAP:Stack>An error occurred when refreshing the XI runtime cache</SAP:Stack>
<SAP:Retry>M</SAP:Retry>
</SAP:Error>
What can I solve this problem?
Any idea?
Thanks,
Sérgio
Message was edited by: Sergio Oliveira

HI Sergio Oliveira
There is some problem in Ur HTTP Destination
Got to sm59.and check HTTP Destination: <b>INTEGRATION_DIRECTORY_HMI</b> settings are okay or not.
Procedure:
1. Log on to your SAP Exchange Infrastructure central instance host.
2. Call transaction SM59.
3. Choose Create.
4. Enter at least the following:
RFC destination: INTEGRATION_DIRECTORY_HMI Connection type: H Description: <your description>
5. Choose ENTER
6. Choose the following tabs and enter the required data:
Tab: Technical Settings
• Target Host: host name of the J2EE engine
• Service No.: HTTP port number (The following naming convention applies: 5<Java_instance_number>00 &#56256;&#56518; 50000, if your Java instance is 00)
• Path Prefix: /dir/CacheRefresh
Tab: Security/Logon
• Select Basic Authentication Confirm both the popup and the warning.
• As logon data enter the client of your SAP XI system and the user XIISUSER with the valid password
Save your entry now, before you switch to next tab, otherwise your entries may be lost.
Press Enter to go to the next screen.
Tab: Special Options
• Timeout: 900
• HTTP Settings: Compression: inactive Compressed Response: No
• HTTP Cookies: Accept Cookies: Yes (All)
7. Choose Test Connection.
The test has been executed successfully if the response status code is 500 and you find REQID not found in the HTTP body.
8. Save your settings.
BEFORE EXECUTIN THE SCENARIO MAKE SURE THAT
IN TRANACTION <b>SXI_CACHE</b>
<b>STATUS</b> SHOULD BE  :  (GREEN ) CACHE CONTENTS ARE UPDATED
Cheers,
Vijay Raheja

Similar Messages

  • Prevent multiple users from updating coherence cache data at the same time

    Hi,
    I have a web application which have a huge amount of data instead of storing the data in Http Session are storing it in coherence. Now multiple groups of users can use or update the same data in coherence. There are 100's of groups with several thousand users in each group. How do I prevent multiple users from updating the cache data. Here is the scenario. User logs-in checks in coherence if the data there and gets it from coherence and displays it on the ui if not get it from backend i.e. mainframe systems and store it in coherence before displaying it on the screen. Now some other user at the same time can also perform the same function and if don't find the data in coherence can get it from backend and start saving it in coherence while the other user is also in the process of saving or updating. How do I prevent this in coherence. As have to use the same key when storing in coherence because the same data is shared across users and don't want to keep multiple copies of the same data. Is there something coherence provides out-of-the-box or what is best approach to handle this scenario.
    Thanks

    Hi,
    actually I believe, that if we are speaking about multiple users each with its own HttpSession, in case of two users accessing the same session attribute in their own session, the actually used cache keys will not be the same.
    On the other hand, this is probably not what you would really like, you would possibly like to share that data among sessions.
    You should probably consider using either read-through caching with the CacheLoader implementor doing the expensive data retrieval (if the data to be cached can be obtained outside of an HTTP container), or side caching with using Coherence locks or entry-processors for concurrency control on the data retrieval operations for the same key (take care of retries in this case).
    Best regards,
    Robert

  • Updating Boot Caches

    Hi,
    I just upgraded to Leopard from Tiger last night on my 15" Macbook Pro (2.16ghz). I also did a software update after the installation. Ever since, whenever I restart or shut down, I receive a message saying "Updating Boot Caches" "Caches necessary for booting are being updated". It eventually goes away and the machine shuts down or re-starts (actually, I shut down this morning, prior to coming to work and found the mbp hot with the fans running - meaning it didn't quite shut down when I closed the lid).
    I don't expect this is normal. Has anyone else

    Hi,
    I just got off the phone with Apple support. They told me to go into my login items under my account in the system preferences and delete all but iCal and iTunesHelper. Then I was asked to look in my Macintosh HD/Library/StartupItems folder. I had a Parallels folder in there, so I was asked to move that to the desktop (it wouldn't move it, so I moved it to the Trash then moved it out of the Trash and onto the desktop). Then, I was asked to restart, which I did a couple of times and I haven't received the message again. It seems to have resolved it.
    While I was on the phone, I asked them about the 'Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.' warning I receive when I try to repair permissions. The product specialist he was chatting with said that I can ignore it and that they are looking into what's causing it.
    Thanks,
    Stephen

  • Need a help to update coherence cache values in c++

    Hi,
    I need to update coherence cache value of a particular object.
    Managed<ExposureHolderContract>::Handle contract =
    cast<Managed<ExposureHolderContract>::Handle>(cache->get(vsName));
    contract->setName("dsafd");
    When i try to cast to a ManagedObject:: Handle it says
    coherence::lang::ConstCastException: attempt to cast from a "const coherence::lang::Managed<ExposureHolderContract>" to a "coherence::lang::Managed<ExposureHolderContract>"
    at void coherence::lang::coh_throw_const_cast(const std::type_info&, const std::type_info&)(ConstCastException.cpp:27)
    at coherence::lang::coh_throw_const_cast(std::type_info const&, std::type_info const&)
    <stack frame symbol unavailable>
    <stack frame symbol unavailable>
    <stack frame symbol unavailable>
    <stack frame symbol unavailable>
    <stack frame symbol unavailable>
    at __libc_start_main
    on thread "main"
    In the documentation it says in order to call non static methods we need to retrieve the handle.
    but when I try to cast to a handle it fails.
    I'm inserting data to coherence cache by calling Managed::create method. Is this method making immutable object.
    ExposureHolderContract tempEhc(contractId, name, date, age, weight);
    Managed<ExposureHolderContract>::Handle ss = Managed<ExposureHolderContract>::create(tempEhc);
    cache->put(String::create(contractId.c_str()), ss);
    Please help me to update the recorde value.
    regards,
    sura

    Hi Sura,
    It is a matter of safety and correctness. The in-process caches return a locally held object, and thus if you made some change to it, that change would be visible within the in-process cache, while not visible to the remote cache. Thus future access to the in-process cache would see a value which does not actually exist in the remote cache. While it is true that if you modify it with the intent to immediately re-insert it this shrinks the window of incorrectness that window still exists, and of course the cache has no idea if you will ever reinsert the value. As for the effect on performance it should be insignificant if you actually do put it back in the cache as the cost of a cache update will easily be multiple orders of magnitude greater then the cost of the clone. Also remember there is no requirement to clone a value if you don't intend to mutate it, you can safely use it via the View. So the only time the performance cost of the clone could be considered significant is when you intend to mutate but not reinsert the data, but a clone is also necessary there as not cloning it would leave the in-process cache in an inconsistent state with respect to the remote cache.
    Mark
    Oracle Coherence

  • Crash when updating site cache?  MM_Username1?

    Hi,
    All of a sudden, tonight, DW8.0.2 will no longer open or load
    one of my
    sites, crashing when "Updating Site Cache". The site is ASP
    linked to an SQL
    database.
    Checking the file that the cache gets to, I notice that the
    problem file is
    within a sub-directory of the site, called "/admin". Thing is
    though, it's
    not always the same file, but it IS always a file within the
    /admin
    sub-directory.
    Within this sub-directory I altered, by hand, the Login User
    code and
    Restrict Access to Page code to create and use the session
    variable
    MM_Username1 as opposed to the default MM_Username.
    Could this be the reason for the sudden trouble with the site
    cache? I am
    puzzled because the site was working fine for a few weeks
    now, with this
    sub-directory included, and I didn't create the MM_Username1
    issue today
    either, it has also been working fine for a good few weeks
    now. I've also
    not added anything new to the site, that I am aware of.
    When I remove the sub-directory from the site, the Updating
    Site Cache works
    fine, so I am 100% sure there is a problem with the files
    within this
    sub-directory. How will I know which one though?
    I've tried this, as recommended by Adobe, but I still get a
    freeze-up when
    re-creating the cache:
    1. Try renaming the Dreamweaver user configuration folder, so
    that
    Dreamweaver will automatically generate a new user
    configuration folder the
    next time Dreamweaver launches. The Configuration folder is
    located here:
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration
    2. Recreate your Dreamweaver user settings in the registry as
    follows:
    Launch the Registry Editor by clicking the Start button,
    choose Run, then
    type "regedit". In the Registry Editor, navigate to this
    folder:
    HKEY_CURRENT_USER\Software\Macromedia\Dreamweaver 8
    Rename the "Dreamweaver 8" key to "DreamweaverOLD", so that
    Dreamweaver will
    automatically generate a new user settings key the next time
    you launch it.
    3. Recreate your Dreamweaver site definitions in the registry
    as follows.
    The steps below will delete your site definitions in
    Dreamweaver.
    4. Launch the Registry Editor by clicking the Start button,
    choose Run, then
    type "regedit". In the Registry Editor, navigate to this
    folder:
    HKEY_CURRENT_USER\Software\Macromedia\Common\8\Sites
    Rename the "Sites" key to "SitesOLD", so that Dreamweaver
    will automatically
    generate a new Sites key the next time you launch it.
    Any further advice?
    Regards
    nath.

    Found it! Jeesh.
    I had a querystring value in my UPDATE redirect URL which was
    coded
    incorrectly!!!
    I am frustrated that, rather than just highlighting the error
    or, at the
    very least, producing an error when opening the specific
    file, this type of
    thing crashed the entire DW programme.
    The time I spent in Notepad today changing MM_Username1 back
    to
    MM_Username!! Turns out that was nothing to do with it.
    <groan> Yeah,
    that's right, laugh it up! :o)
    Anyway, solved now. A misplaced ", %, ), (, <, >, &
    etc can cause you no
    end of grief! :o(
    Nath.
    "tradmusic.com" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    > All of a sudden, tonight, DW8.0.2 will no longer open or
    load one of my
    > sites, crashing when "Updating Site Cache". The site is
    ASP linked to an
    > SQL database.
    > Checking the file that the cache gets to, I notice that
    the problem file
    > is within a sub-directory of the site, called "/admin".
    Thing is though,
    > it's not always the same file, but it IS always a file
    within the /admin
    > sub-directory.
    >
    > Within this sub-directory I altered, by hand, the Login
    User code and
    > Restrict Access to Page code to create and use the
    session variable
    > MM_Username1 as opposed to the default MM_Username.
    > Could this be the reason for the sudden trouble with the
    site cache? I
    > am puzzled because the site was working fine for a few
    weeks now, with
    > this sub-directory included, and I didn't create the
    MM_Username1 issue
    > today either, it has also been working fine for a good
    few weeks now.
    > I've also not added anything new to the site, that I am
    aware of.
    >
    > When I remove the sub-directory from the site, the
    Updating Site Cache
    > works fine, so I am 100% sure there is a problem with
    the files within
    > this sub-directory. How will I know which one though?
    >
    > I've tried this, as recommended by Adobe, but I still
    get a freeze-up when
    > re-creating the cache:
    >
    > 1. Try renaming the Dreamweaver user configuration
    folder, so that
    > Dreamweaver will automatically generate a new user
    configuration folder
    > the next time Dreamweaver launches. The Configuration
    folder is located
    > here: C:\Documents and
    Settings\<username>\Application
    > Data\Macromedia\Dreamweaver 8\Configuration
    >
    > 2. Recreate your Dreamweaver user settings in the
    registry as follows:
    >
    > Launch the Registry Editor by clicking the Start button,
    choose Run, then
    > type "regedit". In the Registry Editor, navigate to this
    folder:
    > HKEY_CURRENT_USER\Software\Macromedia\Dreamweaver 8
    > Rename the "Dreamweaver 8" key to "DreamweaverOLD", so
    that Dreamweaver
    > will automatically generate a new user settings key the
    next time you
    > launch it.
    >
    > 3. Recreate your Dreamweaver site definitions in the
    registry as follows.
    > The steps below will delete your site definitions in
    Dreamweaver.
    >
    > 4. Launch the Registry Editor by clicking the Start
    button, choose Run,
    > then type "regedit". In the Registry Editor, navigate to
    this folder:
    >
    > HKEY_CURRENT_USER\Software\Macromedia\Common\8\Sites
    >
    > Rename the "Sites" key to "SitesOLD", so that
    Dreamweaver will
    > automatically generate a new Sites key the next time you
    launch it.
    >
    > Any further advice?
    > Regards
    > nath.
    >

  • How to update POWL cache in the feeder class

    Hi All,
    I need to update POWL cache in the feeder class, While user removing the selected entries we will synchronize it to DB directly. But I have no idea how to update the POWL cache, Do you know any method to implement it?
    Thank you very much!
    Julia

    Hi,
    In your method Handle_Action changing C_RESULT_TAB is nothing but a sort of local cache which sends the data to be displayed in POWL.
    Can you try deleting the selected row ( can be fetched from c_selected ) from this C_RESULT_TAB parameter.
    I guess this should do the trick.
    Also when you change C_RESULT_TAB, then do remember to set the parameter E_RESULT_LINES_CHANGED as true.
    Regards
    Manas Dua

  • Cannot update local cache 0

    After upgrading to Netweaver7.0 SP15 we started getting these errors messages in the portal defaultTrace logs.
    [EXCEPTION]
    #1#com.sap.bc.proj.jstartup.sadm.ShmException: Cannot update local cache 0.
            at com.sap.bc.proj.jstartup.sadm.ShmCache.nativeGet(Native Method)
            at com.sap.bc.proj.jstartup.sadm.ShmCache.onGet(ShmCache.java:412)
            at com.sap.engine.core.cache.impl.ShmMonitor.onGet(ShmMonitor.java:114)
            at com.sap.engine.cache.admin.impl.LocalMonitor.onGet(LocalMonitor.java:296)
            at com.sap.engine.cache.core.impl.CacheGroupImpl.get(CacheGroupImpl.java:575)
            at com.sap.engine.cache.core.impl.CacheGroupImpl.get(CacheGroupImpl.java:622)
            at com.sap.ip.bi.base.service.cache.impl.CmlCacheService.get(CmlCacheService.java:227)
    It doesn't appear to be a fatal error but it gets logged constantly when users access BI iViews (Bex, Bex Web Analyzer, etc). We've been running like this for a couple of weeks. Last night the server ran out of shared memory. Restarting Oracle and SAP BI cleared up the problem for now. Any number of things could have caused that problem but this error appears to be related to shared memory (ShmCache).
    We've been unable to locate any information about this exception. Any help would be greatly appreciated.
    Regards,
    John

    Hi John,
    We're getting the same problem.  Were you able to resolve it?
    Thanks,
    Regards
    Mel Calucin
    Bentley Systems

  • /usr/bin/gtk-update-icon-cache exists in filesystem?

    heres what i get when i try yo update GTK or install a program like gnome-do. 
    [kazuki@archbang ~]$ sudo pacman -S gtk3
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): gtk-update-icon-cache-2.24.4-1 [0.01 MB]  gtk3-3.0.9-1 [4.69 MB]
    Total Download Size:    0.00 MB
    Total Installed Size:   31.78 MB
    Proceed with installation? [Y/n] y
    (2/2) checking package integrity                   [---------------------] 100%
    (2/2) checking for file conflicts                  [---------------------] 100%
    error: failed to commit transaction (conflicting files)
    gtk-update-icon-cache: /usr/bin/gtk-update-icon-cache exists in filesystem
    Errors occurred, no packages were upgraded.
    [kazuki@archbang ~]$
    Last edited by kazuki454 (2011-05-04 22:43:38)

    ok but stiil not work? [kazuki@archbang ~]$ sudo pacman -Syu gtk3
    Password:
    :: Synchronizing package databases...
    core is up to date
    extra                   472.6K  581.6K/s 00:00:01 [---------------------] 100%
    community               433.9K  570.9K/s 00:00:01 [---------------------] 100%
    multilib is up to date
    :: Starting full system upgrade...
    :: Replace lib32-util-linux-ng with multilib/lib32-util-linux? [Y/n] y
    :: Replace libjpeg with extra/libjpeg-turbo? [Y/n] y
    :: Replace mailx with core/heirloom-mailx? [Y/n] y
    :: Replace util-linux-ng with core/util-linux? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Remove (4): libjpeg-8.3.0-1 [0.83 MB]  util-linux-ng-2.18-3 [6.83 MB]
                lib32-util-linux-ng-2.18-3 [0.58 MB]  mailx-8.1.1-7 [0.16 MB]
    Total Removed Size:   8.40 MB
    Targets (330): glib2-2.28.6-1 [1.57 MB]  atk-2.0.0-1 [0.25 MB]
                   linux-api-headers-2.6.38.1-1 [0.54 MB]
                   tzdata-2011g-1 [0.17 MB]  glibc-2.13-5 [7.19 MB]
                   ncurses-5.9-1 [0.92 MB]  readline-6.2.001-1 [0.29 MB]
                   bash-4.2.008-1 [0.77 MB]  cairo-1.10.2-2 [0.46 MB]
                   libjpeg-turbo-1.1.0-1 [0.20 MB]  libtiff-3.9.5-1 [0.75 MB]
                   libxcb-1.7-2 [0.26 MB]  xproto-7.0.21-1 [0.13 MB]
                   libx11-1.4.3-2 [1.49 MB]  gdk-pixbuf2-2.23.3-1 [0.56 MB]
                   gtk-update-icon-cache-2.24.4-1 [0.01 MB]
                   gcc-libs-4.6.0-4 [0.73 MB]  libtasn1-2.9-1 [0.10 MB]
                   libgpg-error-1.9-3 [0.05 MB]  libgcrypt-1.4.6-3 [0.29 MB]
                   gnutls-2.12.3-1 [1.48 MB]  libxi-1.4.2-1 [0.14 MB]
                   libthai-0.1.15-1 [0.14 MB]  pango-1.28.4-2 [0.48 MB]
                   shared-mime-info-0.90-1 [0.35 MB]  gtk3-3.0.9-1 [4.69 MB]
                   a52dec-0.7.4-5 [0.04 MB]  aalib-1.4rc5-8 [0.14 MB]
                   alsa-firmware-1.0.24.1-1 [2.58 MB]
                   alsa-lib-1.0.24.1-1 [0.37 MB]  dialog-1.1_20110302-1 [0.15 MB]
                   pciutils-3.1.7-4 [0.21 MB]  alsa-utils-1.0.24.2-1 [0.90 MB]
                   db-5.1.25-1 [1.06 MB]  shadow-4.1.4.3-1 [0.94 MB]
                   coreutils-8.12-1 [2.00 MB]  perl-5.12.3-1 [12.55 MB]
                   openssl-1.0.0.d-1 [3.62 MB]  sqlite3-3.7.6.1-1 [0.36 MB]
                   python2-2.7.1-9 [8.18 MB]  python2-cairo-1.10.0-1 [0.02 MB]
                   gobject-introspection-0.10.8-1 [0.77 MB]
                   pygobject-devel-2.28.4-1 [0.17 MB]
                   pygobject-2.28.4-1 [0.27 MB]  pygtk-2.24.0-1 [1.61 MB]
                   xorg-xrandr-1.3.4-2 [0.03 MB]  arandr-0.1.4-2 [0.05 MB]
                   libdrm-2.4.25-1 [0.09 MB]  libgl-7.10.2-2 [0.93 MB]
                   ati-dri-7.10.2-2 [1.67 MB]  libsigc++-2.2.9-1 [0.06 MB]
                   glibmm-2.28.0-2 [0.52 MB]  atkmm-2.22.4-1 [0.08 MB]
                   attr-2.4.44-3 [0.06 MB]  linux-firmware-20110227-1 [8.23 MB]
                   mkinitcpio-busybox-1.18.2-1 [0.16 MB]
                   filesystem-2011.04-1 [0.00 MB]  util-linux-2.19-4 [1.38 MB]
                   udev-167-2 [0.22 MB]  file-5.06-1 [0.19 MB]
                   mkinitcpio-0.6.11-1 [0.02 MB]  kernel26-2.6.38.5-1 [34.85 MB]
                   aufs2-2.6.38_20110314-5 [0.10 MB]
                   aufs2-util-20110314-1 [0.39 MB]  avahi-0.6.30-2 [0.40 MB]
                   binutils-2.21-7 [3.24 MB]  run-parts-3.4.4-1 [0.01 MB]
                   ca-certificates-20110421-3 [0.13 MB]  cairomm-1.9.8-1 [0.26 MB]
                   cdparanoia-10.2-3 [0.08 MB]  gtk2-2.24.4-1 [4.92 MB]
                   nss-3.12.9-1 [1.37 MB]  xorg-xset-1.2.1-2 [0.02 MB]
                   xdg-utils-1.1.0rc1-2 [0.04 MB]  libevent-2.0.10-1 [0.25 MB]
                   desktop-file-utils-0.18-1 [0.03 MB]
                   chromium-11.0.696.57-1 [18.64 MB]  conky-1.8.1-3 [0.15 MB]
                   polkit-0.101-2 [0.35 MB]  consolekit-0.4.4-1 [0.08 MB]
                   dconf-0.7.3-2 [0.08 MB]  dcron-4.5-2 [0.02 MB]
                   device-mapper-2.02.84-1 [0.12 MB]  linux-atm-2.5.1-2 [0.25 MB]
                   iproute2-2.6.37-1 [0.37 MB]  dhclient-4.2.1.1-1 [0.56 MB]
                   dhcpcd-5.2.12-1 [0.06 MB]  idnkit-1.0-1 [0.12 MB]
                   dnsutils-9.8.0-1 [0.93 MB]  dosfstools-3.0.11-1 [0.05 MB]
                   eject-2.1.5-5 [0.02 MB]  elfutils-0.152-1 [0.55 MB]
                   ethtool-1:2.6.38-1 [0.06 MB]  eventlog-0.2.12-2 [0.01 MB]
                   exiv2-0.21.1-1 [1.25 MB]  faad2-2.7-2 [0.18 MB]
                   xvidcore-1.3.1-1 [0.25 MB]  x264-20110327-1 [0.36 MB]
                   libvdpau-0.4.1-1 [0.05 MB]  xextproto-7.2.0-1 [0.12 MB]
                   fixesproto-5.0-1 [0.01 MB]  libxfixes-5.0-1 [0.01 MB]
                   libvpx-0.9.6-2 [0.33 MB]  libva-1.0.12-1 [0.14 MB]
                   ffmpeg-20110330-1 [5.24 MB]  fftw-3.2.2-2 [1.52 MB]
                   libexif-0.6.20-1 [0.33 MB]
                   gsettings-desktop-schemas-3.0.1-2 [0.04 MB]
                   startup-notification-0.10-2 [0.02 MB]
                   gnome-desktop-3.0.1-1 [0.47 MB]  libproxy-0.4.6-6 [0.07 MB]
                   glib-networking-2.28.6.1-2 [0.04 MB]
                   libsoup-2.34.1-1 [0.30 MB]  libgnome-keyring-3.0.1-1 [0.09 MB]
                   libsoup-gnome-2.34.1-1 [0.01 MB]  libunique3-3.0.0-1 [0.04 MB]
                   sg3_utils-1.30-1 [0.46 MB]  lsof-4.84-3 [0.27 MB]
                   lvm2-2.02.84-1 [0.54 MB]  udisks-1.0.3-2 [0.15 MB]
                   libnotify-0.7.2-1 [0.03 MB]
                   gnome-disk-utility-3.0.0-1 [1.65 MB]  gvfs-1.8.1-1 [0.80 MB]
                   nautilus-3.0.1.1-1 [2.19 MB]  file-roller-3.0.1-2 [1.03 MB]
                   gcalctool-6.0.1-1 [0.49 MB]  libldap-2.4.24-1 [0.36 MB]
                   gconf-2.32.3-1 [0.88 MB]  geeqie-1.0-5 [0.84 MB]
                   gegl-0.1.6-1 [0.34 MB]  gettext-0.18.1.1-3 [5.35 MB]
                   giflib-4.1.6-4 [0.08 MB]  librsvg-2.34.0-1 [0.10 MB]
                   gimp-2.6.11-5 [9.40 MB]  xorg-xauth-1.0.5-2 [0.02 MB]
                   gksu-2.0.2-3 [0.02 MB]  gnome-menus-3.0.1-1 [0.14 MB]
                   libmad-0.15.1b-5 [0.06 MB]  keyutils-1.4-1 [0.04 MB]
                   cifs-utils-4.9-2 [0.03 MB]  tdb-1.2.9-1 [0.05 MB]
                   talloc-2.0.5-1 [0.04 MB]  smbclient-3.5.8-2 [8.51 MB]
                   jack-0.120.1-1 [0.28 MB]  libirman-0.4.5-2 [0.01 MB]
                   lirc-utils-1:0.9.0-2 [0.26 MB]  mplayer-33159-1 [8.85 MB]
                   gnome-mplayer-1.0.3-1 [0.30 MB]  libgsf-1.14.20-1 [0.18 MB]
                   goffice-0.8.14-1 [1.29 MB]  gnumeric-1.10.14-1 [9.27 MB]
                   gstreamer0.10-0.10.32-1 [1.28 MB]  orc-0.4.14-1 [0.18 MB]
                   gstreamer0.10-base-0.10.32-4 [1.14 MB]
                   gstreamer0.10-bad-0.10.21-3 [0.84 MB]
                   libraw1394-2.0.7-1 [0.05 MB]  libdc1394-2.1.3-1 [0.13 MB]
                   raptor1-1.4.21-3 [0.17 MB]  liblrdf-0.4.0-7 [0.02 MB]
                   libofa-0.9.3-3 [0.05 MB]  libsndfile-1.0.24-1 [0.28 MB]
                   gstreamer0.10-bad-plugins-0.10.21-3 [0.39 MB]
                   gstreamer0.10-base-plugins-0.10.32-4 [0.15 MB]
                   gstreamer0.10-good-0.10.28-1 [0.85 MB]  taglib-1.7-1 [0.23 MB]
                   sysfsutils-2.1.0-6 [0.03 MB]  v4l-utils-0.8.3-1 [0.23 MB]
                   gstreamer0.10-good-plugins-0.10.28-1 [0.31 MB]
                   gstreamer0.10-ugly-0.10.17-2 [0.15 MB]
                   gstreamer0.10-ugly-plugins-0.10.17-2 [0.08 MB]
                   pangomm-2.28.1-1 [0.07 MB]  gtkmm-2.24.0-1 [1.00 MB]
                   initscripts-2011.04.1-2 [0.01 MB]  intel-dri-7.10.2-2 [1.33 MB]
                   leafpad-0.8.18.1-2 [0.07 MB]  less-443-1 [0.09 MB]
                   lib32-glibc-2.13-5 [2.54 MB]  lib32-pixman-0.20.2-1 [0.15 MB]
                   lib32-gcc-libs-4.6.0-4 [0.71 MB]  lib32-pcre-8.12-1 [0.14 MB]
                   lib32-glib2-2.28.6-1 [1.39 MB]  lib32-cairo-1.10.2-2 [0.31 MB]
                   lib32-util-linux-2.19-1 [0.18 MB]
                   lib32-e2fsprogs-1.41.14-2 [0.15 MB]
                   lib32-libx11-1.4.3-1 [0.50 MB]
                   lib32-gdk-pixbuf2-2.23.3-1 [0.13 MB]
                   lib32-gnutls-2.12.2-1 [0.28 MB]  lib32-libxi-1.4.1-1 [0.02 MB]
                   lib32-gtk2-2.24.4-1 [1.69 MB]
                   lib32-openssl-1.0.0.d-1 [1.00 MB]
                   libburn-1.0.6.pl00-1 [0.19 MB]  libfetch-2.33-3 [0.07 MB]
                   libgtop-2.28.3-1 [0.15 MB]  libisofs-1.0.6-1 [0.16 MB]
                   mpfr-3.0.1-1 [0.31 MB]  libmpc-0.9-1 [0.06 MB]
                   libpciaccess-0.12.1-1 [0.02 MB]  libunique-1.1.6-4 [0.02 MB]
                   libwnck-2.30.6-2 [0.32 MB]  libxfcegui4-4.8.1-2 [0.20 MB]
                   libxt-1.1.1-1 [0.39 MB]  licenses-2.8-1 [0.06 MB]
                   mach64-dri-7.10.2-2 [0.83 MB]  heirloom-mailx-12.5-1 [0.20 MB]
                   libpipeline-1.2.0-1 [0.03 MB]  man-db-2.6.0.2-1 [0.38 MB]
                   mdadm-3.2.1-3 [0.30 MB]  mesa-7.10.2-2 [0.27 MB]
                   mga-dri-7.10.2-2 [0.83 MB]  nitrogen-1.5.2-1 [0.13 MB]
                   libcanberra-0.28-1 [0.07 MB]
                   notification-daemon-0.7.1-1 [0.03 MB]
                   nouveau-dri-7.10.2-2 [1.28 MB]  ntfs-3g-2011.4.12-1 [0.23 MB]
                   ntfsprogs-2011.4.12-1 [0.13 MB]  p7zip-9.20.1-1 [1.14 MB]
                   pacman-mirrorlist-20110324-1 [0.00 MB]
                   parcellite-1.0.1-1 [0.21 MB]  pcmciautils-017-2 [0.02 MB]
                   pm-utils-1.4.1-3 [0.04 MB]  poppler-0.16.4-1 [0.71 MB]
                   poppler-glib-0.16.4-1 [0.17 MB]  ppl-0.11.2-1 [2.74 MB]
                   ppp-2.4.5-2 [0.27 MB]  python-3.2-2 [8.98 MB]
                   python-imaging-1.1.7-3 [0.34 MB]  qt-4.7.3-1 [24.12 MB]
                   r128-dri-7.10.2-2 [0.81 MB]  raptor-2.0.2-1 [0.23 MB]
                   rp-pppoe-3.10-6 [0.08 MB]  savage-dri-7.10.2-2 [0.83 MB]
                   sis-dri-7.10.2-2 [0.82 MB]  slim-1.3.2-5 [0.21 MB]
                   xz-5.0.2-1 [0.30 MB]  squashfs-tools-4.2-1 [0.07 MB]
                   sudo-1.8.1.p1-1 [0.37 MB]  syslinux-4.03-4 [0.68 MB]
                   syslog-ng-3.2.2-2 [0.23 MB]  tar-1.26-1 [0.55 MB]
                   tdfx-dri-7.10.2-2 [0.82 MB]  thunar-1.2.1-2 [2.67 MB]
                   transmission-gtk-2.22-3 [0.54 MB]  tumbler-0.1.21-3 [0.09 MB]
                   unrar-4.0.7-1 [0.08 MB]  usbutils-002-2 [0.16 MB]
                   vi-050325-4 [0.14 MB]  vte-common-0.28.0-1 [0.00 MB]
                   vte-0.28.0-1 [0.34 MB]  wget-1.12-5 [0.39 MB]
                   wpa_supplicant-0.7.3-3 [0.24 MB]  wicd-1.7.0-9 [0.25 MB]
                   xf86-input-evdev-2.6.0-3 [0.02 MB]
                   xf86-input-synaptics-1.4.0-2 [0.04 MB]
                   xf86-video-apm-1.2.3-3 [0.05 MB]
                   xf86-video-ark-0.7.3-3 [0.01 MB]
                   xf86-video-ast-0.91.10-3 [0.02 MB]
                   xf86-video-ati-6.14.1-1 [0.33 MB]
                   xf86-video-chips-1.2.4-2 [0.06 MB]
                   xf86-video-cirrus-1.3.2-6 [0.03 MB]
                   xf86-video-dummy-0.3.4-4 [0.01 MB]
                   xf86-video-fbdev-0.4.2-4 [0.01 MB]
                   xf86-video-glint-1.2.5-2 [0.07 MB]
                   xf86-video-i128-1.3.4-3 [0.02 MB]
                   xf86-video-i740-1.3.2-6 [0.02 MB]
                   xf86-video-intel-2.15.0-1 [0.16 MB]
                   xf86-video-mach64-6.8.2-6 [0.07 MB]
                   xf86-video-mga-1.4.13-3 [0.07 MB]
                   xf86-video-neomagic-1.2.5-4 [0.03 MB]
                   xf86-video-nouveau-0.0.16_git20110316-2 [0.08 MB]
                   xf86-video-nv-2.1.18-3 [0.07 MB]
                   xf86-video-r128-6.8.1-6 [0.04 MB]
                   xf86-video-rendition-4.2.4-4 [0.03 MB]
                   xf86-video-s3-0.6.3-5 [0.03 MB]
                   xf86-video-s3virge-1.10.4-5 [0.03 MB]
                   xf86-video-savage-2.3.2-2 [0.06 MB]
                   xf86-video-siliconmotion-1.7.5-2 [0.05 MB]
                   xf86-video-sis-0.10.3-4 [0.22 MB]
                   xf86-video-sisusb-0.9.4-4 [0.03 MB]
                   xf86-video-tdfx-1.4.3-6 [0.03 MB]
                   xf86-video-trident-1.3.4-4 [0.06 MB]
                   xf86-video-tseng-1.2.4-4 [0.02 MB]
                   xf86-video-v4l-0.2.0-8 [0.02 MB]
                   xf86-video-vesa-2.3.0-5 [0.01 MB]
                   xf86-video-vmware-11.0.3-3 [0.02 MB]
                   xf86-video-voodoo-1.2.4-4 [0.01 MB]
                   xf86-video-xgi-1.6.0-3 [0.11 MB]
                   xf86-video-xgixp-1.8.0-3 [0.05 MB]  xfburn-0.4.3-4 [0.26 MB]
                   xfsprogs-3.1.5-1 [0.58 MB]  xorg-xkbcomp-1.2.1-2 [0.08 MB]
                   xkeyboard-config-2.2.1-1 [0.46 MB]
                   xorg-fonts-encodings-1.0.4-1 [0.54 MB]
                   xorg-bdftopcf-1.0.3-1 [0.01 MB]
                   xorg-mkfontscale-1.0.8-1 [0.02 MB]
                   xorg-mkfontdir-1.0.6-2 [0.00 MB]
                   xorg-font-util-1.2.0-1 [0.02 MB]
                   xorg-font-utils-7.6-2 [0.00 MB]  xorg-iceauth-1.0.4-2 [0.01 MB]
                   xorg-luit-1.1.0-2 [0.02 MB]  xorg-setxkbmap-1.2.0-2 [0.01 MB]
                   xorg-server-common-1.10.1-1 [0.02 MB]
                   xorg-server-1.10.1-1 [1.24 MB]  xorg-sessreg-1.0.6-2 [0.01 MB]
                   xorg-xcmsdb-1.0.3-2 [0.01 MB]
                   xorg-xbacklight-1.1.2-2 [0.01 MB]
                   xorg-xgamma-1.0.4-2 [0.01 MB]  xorg-xhost-1.0.4-2 [0.01 MB]
                   xorg-xinput-1.5.3-2 [0.02 MB]  xorg-xmodmap-1.0.5-2 [0.02 MB]
                   xorg-xrdb-1.0.9-1 [0.02 MB]  xorg-xrefresh-1.0.4-2 [0.01 MB]
                   xorg-xsetroot-1.1.0-2 [0.01 MB]
                   xorg-server-utils-7.6-2 [0.00 MB]  xorg-twm-1.0.6-2 [0.09 MB]
                   xorg-xdpyinfo-1.2.0-2 [0.01 MB]
                   xorg-xdriinfo-1.0.4-2 [0.00 MB]  xorg-xev-1.1.0-2 [0.01 MB]
                   xorg-xlsatoms-1.1.0-2 [0.01 MB]
                   xorg-xlsclients-1.1.1-2 [0.01 MB]  xorg-xprop-1.2.0-2 [0.02 MB]
                   xorg-xvinfo-1.1.1-2 [0.01 MB]  xorg-xwininfo-1.1.1-2 [0.02 MB]
                   xorg-utils-7.6-7 [0.00 MB]  xorg-xinit-1.3.0-3 [0.01 MB]
                   xorg-xkbutils-1.0.3-2 [0.02 MB]  xorg-xkbevd-1.1.2-2 [0.02 MB]
                   xorg-xkb-utils-7.6-1 [0.00 MB]  xorg-xkill-1.0.3-2 [0.01 MB]
                   xterm-269-1 [0.22 MB]  zip-3.0-2 [0.15 MB]
    Total Download Size:    1.13 MB
    Total Installed Size:   1398.30 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pciutils-3.1.7-4-x...   219.5K  484.9K/s 00:00:00 [---------------------]  18%
    udev-167-2-x86_64       444.4K  255.7K/s 00:00:02 [---------------------]  38%
    run-parts-3.4.4-1-...   452.2K  173.5K/s 00:00:03 [---------------------]  39%
    ca-certificates-20...   580.8K  155.1K/s 00:00:04 [---------------------]  50%
    sudo-1.8.1.p1-1-x86_64  964.4K  184.3K/s 00:00:05 [---------------------]  83%
    usbutils-002-2-x86_64  1133.0K  176.3K/s 00:00:06 [---------------------]  97%
    :: Retrieving packages from extra...
    dcron-4.5-2-x86_64     1158.1K  149.2K/s 00:00:08 [---------------------] 100%
    (330/330) checking package integrity               [---------------------] 100%
    (330/330) checking for file conflicts              [---------------------] 100%
    error: failed to commit transaction (conflicting files)
    wicd: /usr/lib/python2.7/site-packages/wicd/__init__.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/backend.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/configmanager.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/dbusmanager.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/logfile.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/misc.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/networking.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/wnettools.pyo exists in filesystem
    wicd: /usr/lib/python2.7/site-packages/wicd/wpath.pyo exists in filesystem
    Errors occurred, no packages were upgraded.
    [kazuki@archbang ~]$

  • "Updating boot caches" message

    I periodically get a "Updating boot caches" message when shutting down. I click "okay" and wait.
    Nothing seems to happen - I left it in this state overnight in case some long process was involved - the following morning all I had was a desktop background with no icons, menus, taskbar or pointer. Had to hard re-boot.
    Clearly something is wrong. Any suggestions?
    Thanks!

    Same thing happens to me after the 10.5.7 update and combo update. Also my clock no longer displays in the menu bar. I have to do a hard shut down every time.

  • Shared Calendar items don't update in caching mode

    Hi Forum,
    we use a shared calendar for entries like holidays and who is in standby in off hours etc.
    We use a dedicated account for this and shared the calender to all colleagues.
    Since we upgrade to 2014 (build 116215), changes won't be updated in caching mailboxes. Only new entries appear correct and fast.
    We all use the caching mode, some clients are still on version 8 and some on 2014, but all show the same behavior.
    What happened: The guy who is in standby this week is sick. Colleague edit the entry.
    We all still see the old entry, even the next day.
    I only get the updated entry if I "retrieve entire mailbox".
    As you maybe guess: the entry is already updated in the online mode.
    What is going wrong here? Any suggestions? Thanks in advance.
    Cheers,
    Pascal

    bendeichp,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • MacBook hangs while "Updating Boot Caches"

    Hi there,
    sometimes when I'm turning my MacBook off, the following message appears:
    Updating Boot Caches
    Caches needed for booting are being updated
    And another line saying something like "as soon as the caches are updated system will be turned off"
    The problem is that, even after some minutes, nothing happens, the message is still there and I'm forced to turn the MacBook off by holding the power button...
    Any idea about the meaning of the message and the reason of the hanging?
    Thanks in advance and Ciao!
    Sergio

    Hey Sergio, have you gotten any answers why your Macbook hangs up often? I've got a two-week old black Macbook and it hangs up more often than I expect.

  • Auch beim leztzten Bridge Update bestehen Cach Probleme fort

    Ich dachte, dass mit dem neuen Bridge Update das Cach Problemn endlich gelöst würde. Dem ist aber nicht so: Nach einigen Bilder, die ich aus Bridge heraus in Photoshop bearbeitet hatte, wurden die geänderten JPGs nicht mehr neu eingelesen, auch das Änderungsdatum wurde nicht aktualisiert....

  • HT1229 itunes will not update ipod cache for iPhoto 11

    My itunes does not update my iphone 4s to the latest pictures loaded onto iphoto 11, no updates available. Any clues as to what is wrong, could Pixelmator be the problem?

    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for the iPod Photo Cache.
    Trash it. Start iPhoto and try sync again.
    Regards
    TD 

  • Xcode updates not caching in Caching Server - non-whitelisted url denied.

    I am running OS X Server 2.2.1 - Build 169.  (Mountain Lion).  I have the caching service enabled and it appears to have been working successfully - as I can see that updates from Apple are coming from my server when applied to multiple Macs.
    There is a new update to XCode 4.6.3 that I have been applying to my Macs - and I am noticing that it is re-downloading from Apple each time - instead of using the cache.
    If I look at the Caching Service log - I see an error for each time that I have applied the 4.6.3 update:
    Request for non-whitelisted URL denied (http:10.0.x.x:50360)   (10.0.x.x is my my server)
    HTTP Server:  Error 400 - Bad Requst (/)
    Is this a problem with the caching server - or are Apple's developer tools intentionally not being cached?  The log does not tell me what url is being requested.

    I have this exact problem too. Interestingly, I have this on my Mini server, then I've setup a caching server on my MacBook Pro and its the same. This log is from my MacBook Pro, its called badgerbookpro.local but its the same on the Mini server. Both are runing 10.8.3
    Jun  1 01:34:22 badgerbookpro.local AssetCache[4811]: Caching server started
    Jun  1 01:34:25 badgerbookpro.local AssetCache[4811]: Registration succeeded.  Resuming server.
    Jun  1 01:37:02 badgerbookpro.local AssetCache[4811]: Request for non-whitelisted URL denied (http://192.168.1.48:62249/)
    Jun  1 01:37:02 badgerbookpro.local AssetCache[4811]: HTTP Server: Error 400 - Bad Request (/)
    Jun  1 01:38:23 badgerbookpro.local AssetCache[4811]: Request for non-whitelisted URL denied (http://192.168.1.48:62249/)
    Jun  1 01:38:23 badgerbookpro.local AssetCache[4811]: HTTP Server: Error 400 - Bad Request (/)
    Jun  1 01:43:51 badgerbookpro.local AssetCache[4811]: HTTPConnection[0x7fdc04b1b900]: responseHasAvailableData: - Sender is not current httpResponse
    Jun  1 01:44:46 badgerbookpro.local AssetCache[4811]: Request for non-whitelisted URL denied (http://192.168.1.48:62249/)
    Jun  1 01:44:46 badgerbookpro.local AssetCache[4811]: HTTP Server: Error 400 - Bad Request (/)
    Jun  1 01:45:05 badgerbookpro.local AssetCache[4811]: Request for non-whitelisted URL denied (http://192.168.1.48:62249/)
    Jun  1 01:45:05 badgerbookpro.local AssetCache[4811]: HTTP Server: Error 400 - Bad Request (/)
    Jun  1 02:51:24 badgerbookpro.local AssetCache[4811]: Request for non-whitelisted URL denied (http://192.168.1.48:62249/)
    Jun  1 02:51:24 badgerbookpro.local AssetCache[4811]: HTTP Server: Error 400 - Bad Request (/)
    Jun  1 03:55:04 badgerbookpro.local AssetCache[4811]: Server shutting down (15)
    Jun  1 03:55:04 badgerbookpro com.apple.launchd[1] (com.apple.AssetCache[4811]): Exited with code: 15

  • Statistics updated when cache is used?

    Hi, I thought this was posed before, but I couldn't find the thread. 
    Can anyone tell me if Technical content is updated when the cache is utilized by a query?
    Thanks!

    You should see a 0 in the DB Sel and DB Trans, but see time spent by the OLAP Processor.  This means the data was found in the local or global cache and there was no need to go back to the DB.

  • Dreamweaver CC 2014 crashes when updating site cache

    Hi everyone,
    I'm using Dreamweaver CC 2014 on the Mavericks operating system for mac. Dreamweaver attempts to update a site cache for one of my sites but then it pauses for a few minutes and then crashes. I thought it could have been a corrupted cache file so I deleted the MacFileCache-********.dat file inside the Dreamweaver configuration folder but this didn't work. I tested again and I got the same result.
    I just wondered if anyone has had this problem or whether there's a workaround?
    Appreciate any advice.

    I do have one workaround that worked for MOST of my folders. It is NOT the best option--but it helped me get a little more of my website recognized. (This is working on a mac with the latest version of Mavericks.  Who knows WHAT Yosemite will do!)
    I dragged my biggest folders out of the larger 'site' folder and on to the desktop.  I ignored them and just began with the dreamweaver site manager--creating my site by pointing to the first few folders that had been listed under 'site'.  Then, I added the folders on the desktop a few at a time.  It worked until I got to a larger, complicated folder...then it froze again.  I worked on this all day-- and I'm done for now.  But I'm not giving up.  With Adobe, there is always a good outcome.  Sometimes, it just takes a little longer.     
    If I get all the kinks out, I'll let you know.  Meantime, the more people who ask the question, perhaps the more likely it is to get a little help.
    THANKS.

Maybe you are looking for