Updating content doesn't work???

Hi everybody,
I'm using the Java Api. The problem is that I update the file's content and, in the same code, I list the folder contents showing document's size, last modified dates, etc.
Then, I use the web interface to see the results and...the files doesn't seem to be updated. What's happening? I've been making different tests and I've seen that the problem is the LibrarySession object (at least, I think so). The file's attributes aren't updated until you disconnect the session. How can I avoid this behaviour?
I'd like to maintain the session opened, but I'd like also to have the files updated.
Thank U in advance

Thank U for your answers.
Luis, do you think I must use transactions or not? We have thought about it, but I haven't probe it yet.
Here is my code. Hope it's enough clear.
//Start iFS service & get the session
LibraryService service = null;
boolean isServiceStarted = LibraryService.isServiceStarted(ConnectionManager.serviceName);
if (isServiceStarted){
servicio = LibraryService.findService(serviceName);
}else{
service = LibraryService.startService(serviceName, servicePassword);
CleartextCredential credencial = new CleartextCredential(user, passwd);
//Get the session
session = service.connect(credencial, null);
//Get the content Object & content definition
contentObject = ((Document)this.objetoIFS).getContentObject();
contentDefinition = (ContentObjectDefinition)contentObject.getDefinition();
contentDefinition.setEmptyContent();
contentDefinition.setContent("New Content");
//Get the document definition
documentDefinition = (DocumentDefinition)((Document)this.objetoIFS).getDefinition();
documentDefinition.setContentObjectDefinition(contentDefinition);
//Set the content & update the document
((Document)this.objetoIFS).setContent(documentDefinition);
((Document)this.objetoIFS).update(documentDefinition);
Thank U in advance.

Similar Messages

  • Ts update progam doesn''t work.

    my ts update progam doesn''t work. it seems be be missing. The messsage I get is that the program doesn't exist after I get an alert saying the TS Update isn't working.  Where do i donwload the program? Its an HP TouchSmart 600, windows 7 64bit

    Per my previous note, the model number is HP TouchSmart 600 and I'm on Windows 7.   This is NOT an upgrade scenario.
    When I purchased and began using the machine, it went through a rountine software update check just after start up.   For some reason, now when I start up the machine, it attempts up look for softward updates and then pops up a message alerting me to the fact that the TS update is not working. When I attempt to diagnose why, the message I get is that the TS update program is not there.
    So, i think that I just need to install the auto-update program again????? Not sure.

  • I downloaded a facebook update that doesn't work on my iPhone OS. Can I get the previous version back?

    I downloaded a facebook update that doesn't work on my iPhone OS. Can I get the previous version of facebook back? I have a 3G phone that doesn't upgrade to OS 4.3 which the newest facebook update needs to run. Now I can't use facebook on my iPhone at all. Is there a place to downgrade or to download the older version of the app?

    i can't understan why i can get a facebook apps for my iphone 3g that is so "sad" i'm miss facebook all because u guys Apple have a new version of the facebook and the 3g can,t upgarde i'm vext with apple right now!.....

  • Updated software doesn't work

    Sooo. I updated software on ipad, now the app buttons just shake, nothing works.  I restarted a few times.   Any thughts? Thanks.

    If it's happening on all the apps that you've downloaded from the App Store, but not the Apple built-in ones, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted.
    If it's happening on all apps including Apple's then try closing them all completely and see if they work when you re-open them : from the home screen (i.e.not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • DPS HTML Content doesn't work anymore

    Hello,
    a few weeks ago, I created two Single-Folio-Apps. In these apps I have placed HTML content in InDesign with the command "Insert HTML". I so placed <textarea>-fields among others. I set the HTML content to Auto Play and allowed user interaction. The folio app worked well and it was possible to write text into the textfields on the iPad and also on the Samsung Galaxy Tab 10.1N (in the Adobe Content Viewer). On Monday I built the apps again, because I wanted to add a new iPad device for testing the app. And now it doesn't work anymore! The HTML content isn't even executed in the Folio! I placed another HTML content in InDesign - a simple text with a <strong>-tag - only for testing. The result: it also isn't executed! I only can see a black box on the page where this html content should be! How can this be? Further the app crashes always! How can I solve this problem? I really need help, because I'd like to present the apps to a client - actually this already should have happened! Please, can anyone help me?
    Thank you in advance!
    With best regards,
    Verri

    Did you install the updated tools? There were issues with the original v25 release that affected HTML and buttons.
    Bob

  • Update process doesn't work

    Hello all,
    I created the following PLSQL Trigger but it doesn't work as it should.
    If there is a change in the colomn "stunden" in table cn_pl_std_peplanung, the trigger should write the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) from cn_pl_std_peplanung into the table cn_pl_aenderungen.
    The problem is that this trigger doesn't just write the row where attribute "stunden" was changed into cn_pl_aenderungen, it writes all rows into cn_pl_aenderungen where the attributes (pl_id, l_art_id, pe_id, idee_id, abt_id, version_id) are matched. I just need the row where attribute "stunden" was changed. cn_pl_aenderungen is a table to log the changes made on cn_pl_peplanung.
    I hope you understood the problem... :-)
    create or replace trigger "CN_PL_STD_PEPLANUNG_T1"
    AFTER
    insert or update on "CN_PL_STD_PEPLANUNG"
    for each row
    DECLARE
    pragma autonomous_transaction;
    cursor c_peplanung(in_stunden number)
       is select pl_id, l_art_id, pe_id, idee_id, abt_id, version_id, stunden FROM cn_pl_std_peplanung
       WHERE stunden = in_stunden;
    rec_plan c_peplanung%rowtype;
    BEGIN
    OPEN c_peplanung (:old.stunden);
    LOOP
    FETCH c_peplanung INTO rec_plan;
    exit when c_peplanung%NOTFOUND OR c_peplanung%NOTFOUNd is Null;
    IF rec_plan.stunden != :new.stunden THEN
    INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
    VALUES
    (rec_plan.l_art_id, rec_plan.pe_id, rec_plan.idee_id, rec_plan.version_id, v('APP_USER'), sysdate);
    COMMIT;
    END IF;
    END LOOP;
    CLOSE c_peplanung;
    END;

    All you need is just this
    CREATE OR REPLACE TRIGGER CN_PL_STD_PEPLANUNG_T1 AFTER INSERT OR UPDATE ON CN_PL_STD_PEPLANUNG FOR EACH ROW
    BEGIN
         IF :NEW.student != :OLD.student
         THEN
              INSERT INTO CN_PL_AENDERUNGEN (l_art_id, pe_id, idee_id, version_id, benutzer, datum)
                   VALUES (:NEW.l_art_id, :NEW.pe_id, :NEW.idee_id, :NEW.version_id, v('APP_USER'), sysdate);
         END IF;
    END;Don't use ATONOMOUS_TRANSACTION. You dont want to log if nothing happens to the Main table right? Think what happens if the main transaction rolls back.
    Note: Code not tested.

  • InCopy CS5.5 update content does not work

    I am an editor using InCopy for editing my magazine. I only have InCopy. My art director who uses the full InDesign suite, and I work remotely. She sends InCopy files to me via Dropbox. When she makes changes to the files, my content update does not work. It is shaded grey. It worked a couple of times and then stopped. Does my art director need to do something on her end to ensure I can update content in files she sends to me?
    Thanks for any help someone can provide.

    Hi and thanks for the quick reply.
    This is the problem:
    My art director is using Indesign to create Incopy files for me to edit. We
    both are working from remote locations and are using Dropbox (remote server)
    to store our files. We have been having some problems... When my art
    director changes an image I do not see the image change/update on my end.
    How do we solve this problem?
    We are both using the latest version of the software she is using InDesign
    CS5.5 and I'm using InCopy CS5.5.
    Thanks for your help.
    Cheers,
    Mary
    Mary Scianna
    Editor, Shop Metalworking Technology Magazine
    Latest issue: http://shopmetaltech.dgtlpub.com
    Vice President, Zedcom Media Inc.
    Tel: 647 932 4477
    Cell: 647 408 6137
    Email: [email protected]
    Web: www.shopmetaltech.com
    Mary Scianna Courier Address:
    416 Whitby Shores Greenway,
    Whitby, ON L1N 9R5  Canada
    Mailing Address:
    1450 Headon Road, PO Box 93171
    Burlington, ON L7M 4A3  Canada

  • 1st generation; hasn't been updated; simply doesn't work.

    This isn't a 3.0 issue, btw. Got the iPod from a friend. I press the home button, sometimes either the low battery icon will appear, sometimes the Apple logo. Same thing with the menu button. I try to reset it, that doesn't work either. Doesn't even register on my computer, won't charge on the A/C adapter. I have no clue what is wrong with this thing.
    Quick update--as of tonight, the iPod is not responding to anything at all. Completely blank screen.
    Message was edited by: DxS-Phreak

    Reset: Hold the Sleep/Wake and Home buttons and don’t let go until the screen goes dark and the Apple logo appears (no data will be lost)

  • Updater CS5 doesn't work

    the updater in CS5 doesn't work,
    and the most annoying thing is that the link for help is going to a non-existing page !!
    so the updater sucks!

    update manually,
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2104 updates:  http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html

  • Satelitte A60-202 after bad BIOS update PC doesn't work

    Hi
    After one very bad update of my BIOS, my PC doesn't work and doesn't switch on.
    What to do now ?
    It's Toshiba Satellite A60-202 with 512Mb memory and 40Gb of HD.
    type PSA60E-OLP06TFR model SA60-202
    Thanks
    Yves

    HI Yves,
    Unfortunately, if the BIOS update procedure did not work (or complete correctly), then it is likely that the existing BIOS in the CMOS chip had been corrupted and without this you will not be able to boot up your notebook to correct the problem.
    It will be necessary to take (or send) your notebook to an authorised Service Agent to have the BIOS reflashed.
    regards,

  • Since the update Facebook doesn't work

    Since the Gingerbread update my Facebook doesn't work properly, at the upper right of the screen I no longer have the choice to hit it and have on the bottom the status update, all stories, etc. so its constantly stuck on "news stories". I have uninstalled and installed 3 times now

    Dougiecuurs wrote:
    Since the Gingerbread update my Facebook doesn't work properly, at the upper right of the screen I no longer have the choice to hit it and have on the bottom the status update, all stories, etc. so its constantly stuck on "news stories". I have uninstalled and installed 3 times now
    Have you tried settings / applications / manage applications / facebook / clear data and clear cache?

  • HT1338 ios 6 updated iphone doesn't work on my mac

    I am currently using iphone 4 - recently upgraded to IOS 6,
    and it doesn't work on my mac - a version of MAC OS X 10.5.8. - when it connects to itunes - which i have a latest version upgraded on my mac.
    I tried to upgrade the Mac software of 10.6 and later versions to the latest versions, but i can't download them.
    That's why I can't use itunes to upload the songs in my iphone, which is my biggest concern right at the moment.
    Let me know how I can upload the songs in my iphone!

    Upgrading to Snow Leopard 10.6 is a paid upgrade not a free download.
    Requirements for OS X 10.6 'Snow Leopard'
    http://support.apple.com/kb/SP575
    OS 10.6 Snow Leopard is once again available from the Apple Store:
    http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard

  • After System Update keyboard doesn't work -MacBook

    Here is what happened and I was able to fix, someway... but not definetly.
    I updated to Snow Leopard and everything was fine. After I launched System Update to finish the update, I installed a few ones then I rebooted.
    At the login I realized that some of the keys didn't work anymore. Namely
    0 = P ] ; \ / ENTER
    those what I found.
    With the help of the virtual keyboard I was able to take a look at the log and I noticed that the /System/Library/Extensions/AppleHIDKeyboard.kext was updated just before the last working configuration...
    Luckily I had a bootable backup of the system before Snow Leopard, so I boot from the external USB drive and copied the old AppleHIDKeyboard.kext in place of the new one, that I saved with .bak extension.
    I rebooted and the keyboard was properly working again.
    I think my fix is "dirty". I experienced some slowdowns here and there and I found a log message stating:
    com.apple.kextcache[271] AppleHIDKeyboard.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    I'm wondering why the keyboard stopped working and if there is a better way to fix it.
    Any comment? (Please)
    All log messages containig "keyboard" follows
    Thanks
    <START OF LOG MESSAGES CONTAINING "keyboard">
    [[MARKER THIS IS AFTER SNOW LEOPARD UPDATE]]
    16/03/2010 14:47:53 pkgutil[1163] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/CodeDirectory' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/CodeDirectory'.
    16/03/2010 14:47:53 pkgutil[1164] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/CodeRequirements' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/CodeRequirements'.
    16/03/2010 14:47:54 pkgutil[1165] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/CodeResources' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/CodeResources'.
    16/03/2010 14:47:54 pkgutil[1166] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/CodeSignature' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/CodeSignature'.
    16/03/2010 14:47:54 pkgutil[1167] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/Info.plist' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/Info.plist'.
    16/03/2010 14:47:54 pkgutil[1168] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/MacOS/AppleBluetoothHIDKeyboard' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/MacOS/AppleBluetoothHIDKeyboard'.
    16/03/2010 14:47:54 pkgutil[1169] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/Resources/AppleBluetoothHIDKeyboard.plist' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/Resources/AppleBluetoothHIDKeyboard.plist'.
    16/03/2010 14:47:54 pkgutil[1170] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeDirectory' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/_CodeSignature/CodeDirectory'.
    16/03/2010 14:47:54 pkgutil[1171] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeRequirements' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/_CodeSignature/CodeRequirements'.
    16/03/2010 14:47:54 pkgutil[1172] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeResources' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/_CodeSignature/CodeResources'.
    16/03/2010 14:47:54 pkgutil[1173] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/_CodeSignature/CodeSignature' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/_CodeSignature/CodeSignature'.
    16/03/2010 14:47:54 pkgutil[1174] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoot hHIDKeyboard.kext/Contents/version.plist' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleBluetoo thHIDKeyboard.kext/Contents/version.plist'.
    16/03/2010 14:47:54 pkgutil[1175] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/CodeDirectory' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/CodeDirectory'.
    16/03/2010 14:47:54 pkgutil[1176] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/CodeRequirements' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/CodeRequirements'.
    16/03/2010 14:47:55 pkgutil[1177] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/CodeResources' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/CodeResources'.
    16/03/2010 14:47:55 pkgutil[1178] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/CodeSignature' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/CodeSignature'.
    16/03/2010 14:47:55 pkgutil[1179] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/Info.plist' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/Info.plist'.
    16/03/2010 14:47:55 pkgutil[1180] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/MacOS/AppleUSBHIDKeyboard' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/MacOS/AppleUSBHIDKeyboard'.
    16/03/2010 14:47:55 pkgutil[1181] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeDirectory' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/_CodeSignature/CodeDirectory'.
    16/03/2010 14:47:55 pkgutil[1182] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeRequirements' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/_CodeSignature/CodeRequirements'.
    16/03/2010 14:47:55 pkgutil[1183] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeResources' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/_CodeSignature/CodeResources'.
    16/03/2010 14:47:55 pkgutil[1184] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/_CodeSignature/CodeSignature' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/_CodeSignature/CodeSignature'.
    16/03/2010 14:47:55 pkgutil[1185] Updating receipt 'com.apple.pkg.BaseSystem' path 'System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDKe yboard.kext/Contents/version.plist' on '/' with actual metadata from '/System/Library/Extensions/AppleHIDKeyboard.kext/Contents/PlugIns/AppleUSBHIDK eyboard.kext/Contents/version.plist'.
    [[MARKER NOW I REBOOTED AND THE KEYBOARD DID NOT WORK]]
    16/03/2010 17:24:43 /System/Library/Input Methods/KeyboardViewer.app/Contents/MacOS/KeyboardViewer[313] CGSKeyTranslateInitialize: KLGetCurrentKeyboardLayout or KLGetKeyboardLayoutProperty is not available, fall back to USA keymap
    16/03/2010 17:55:06 /System/Library/Input Methods/KeyboardViewer.app/Contents/MacOS/KeyboardViewer[337] CGSKeyTranslateInitialize: KLGetCurrentKeyboardLayout or KLGetKeyboardLayoutProperty is not available, fall back to USA keymap
    [[MARKER NOW I WILL TRY TO INSTALL A FIRMWARE UPDATE, BUT IT WILL STATE THAT MY SYSTEM DOESN'T NEED IT. SO NOTHING DONE]]
    16/03/2010 21:27:26 /System/Library/Input Methods/KeyboardViewer.app/Contents/MacOS/KeyboardViewer[433] CGSKeyTranslateInitialize: KLGetCurrentKeyboardLayout or KLGetKeyboardLayoutProperty is not available, fall back to USA keymap
    16/03/2010 21:33:37 Installer[462] Opened from: /Volumes/MacBook MacBook Pro Keyboard Update/MacBookMacBookProKbdSU.pkg
    16/03/2010 21:36:52 /System/Library/Input Methods/KeyboardViewer.app/Contents/MacOS/KeyboardViewer[490] CGSKeyTranslateInitialize: KLGetCurrentKeyboardLayout or KLGetKeyboardLayoutProperty is not available, fall back to USA keymap
    17/03/2010 07:13:25 /System/Library/Input Methods/KeyboardViewer.app/Contents/MacOS/KeyboardViewer[662] CGSKeyTranslateInitialize: KLGetCurrentKeyboardLayout or KLGetKeyboardLayoutProperty is not available, fall back to USA keymap
    [[MARKER AND HERE IS AFTER I RESTORED THE OLD AppleHIDKeyboard.kext...]
    17/03/2010 07:44:23 com.apple.launchd.peruser.502[182] ([0x0-0x60060].com.apple.KeyboardViewer[662]) Exited: Killed
    17/03/2010 08:21:55 com.apple.kextcache[271] AppleHIDKeyboard.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    <END OF LOGS>

    It is never a good idea to mix system components like kext's from different OS X versions. If you right-click on for instance the AppleHIDKeyboard.kext & choose "Show contents" you will see that it is a bundle composed of many individual files. Many of these files contain information about files in other OS bundles. Similarly, other OS bundles may contain info about the files in this bundle. This tells the OS what +set of files+ it can & can't use for various functions.
    IOW, kext's are not self-contained, functionally independent items. When you replace one with one from a different OS version, its info about other files usually won't be right. This can & very often does cause problems. Some are minor but others can cause progressively greater problems, eventually damaging the OS enough that it becomes inoperative.
    So, your fix is almost certainly "dirty."
    It's also not addressing the source of the problem. There is nothing wrong with Snow Leopard's AppleHIDKeyboard.kext file (version 1.2.0). Snow Leopard works perfectly well with my & thousands of other users' MacBooks. The cause of your problem could be many things, but this is not one of them. If you can accept that, there are several things you can do to find the cause, starting with running the Apple Hardware Test to see if it finds up any problems with your MacBook.

  • 'do not download or install updates automatically' doesn't work 4 my Adobe.

    some people use Adobe just to read from time to time some pdfs on their computer. they dont work with adobe, they dont need "the latest updates", they are happy with what they have.
    so im a bit frustrated how often adobe is updated while im not interested, how many times for month i must click "NO, THANKYOU."  - really, i have enough "clicks" on the whole internet every day (disabling adds etc.)
    yes, i know, you "can" disable updates in options: "edit - preferences - updater - do not download or install updates automatically" but it doesnt work for my Adobe, im still getting info about "waiting update".
    any help because i have no idea and im a bit tired? thanks in advance...

    Setting the Updater preferences to not download updates automatically (i.e. edit - preferences - updater - do not download or install updates automatically) will only change the way Reader updates are downloaded. It could be a case wherein Adobe Acrobat is also installed on your system for which you might be getting the update prompts.
    Would it be possible for you to share the contents of the file AdobeARM.log present in the %temp% folder so that I can confirm the reason for the behavior on your system.

  • Update button doesn't work in Chrome. Again.

    I created a blog post in Chrome and saved it as a draft. worked fine. Now each time I update the post and try to save it (update) or save a draft, nothing happens in Google's Chrome. works well in Safari and Firefox on a Mac.
    Should I avoid using Chrome with BC?
    Cheers

    Just installed the iTunes update & now the same is happening to me. Until the update I had no problems with iTunes opening up when I clicked on "View in iTunes" buttons in Google Chrome. After reading the OP, I decided to try in Internet Explorer and it worked fine. Apparently, the update doesn't agree with Google Chrome. *sighs*

Maybe you are looking for

  • Windows File Sharing behaving differently on 10.4.5 ( iMac vs. Mini Intel)

    I have and iMac and a Mini Mac Intel Duo configured the same: jdoe/password/workgroup ( bot Macs have a user name jdoe) personal file sharing started windows file sharing started with jdoe account enabled From the PC I ping both Macs to check network

  • IPod Stops & Starts

    This started just this morning.  My iPod is fully charged, and I was listening to it with headphones.  It played for about 2 minutes, then stopped.  I hit the Play button and it started playing again...then stopped again after 2 minutes.  I've never

  • Doc is not Purely Fi clearing Document

    Dear Gurus, When i reversed the FI document Through FB08 Or FBRA system give the error : this document is not purely Fi clearing document. I dont understand this problem? Pls help on this issue. Regards Mahesh K Singh

  • Mass Generation of Sales Orders via Marketing Projects

    Hi all, Is it possible to generete ERP order when using the functionality for mass generation of sales orders via marketing projects? cheers Camilla

  • MAIL IS EATING SENT MAIL AND SENDING DUPLICATES

    hi- i've been having MAJOR mail issues. the biggest are .mac mail is eating my sent email - they just disappear into thin air - never to be found again. and i've noticed there are duplicates - 2, and sometime 4 of the same email sent out. i am using