OK, very close to integrating WL8.1/TL/UserTransactions...  Please help!

OK, I'm nearly there. I can create my UserTransaction, query from a ClientSession, use getActiveUnitOfWork from my ClientSession, BUT when I commit the UserTransaction, NOTHING goes back to the database, and no errors are thrown.
And I'm not commit()-ing on the UnitOfWork.
here's the portion of the low which shows the UserTransaction commit:
message: Obtain and begin a javax.transaction.UserTransaction: 9061763 for DAOImpl: 8184738
ServerSession(25450642)--client acquired
ClientSession(3755648)--acquire unit of work: 19483635
UnitOfWork(19483635)--JTS register
2004-10-08 00:59:14,734 DEBUG com.emc.km.dao.toplink.DAOImpl - method: close
message: Commit the javax.transaction.UserTransaction: 9061763 for DAOImpl: 8184738
UnitOfWork(19483635)--Before JTS Completion
UnitOfWork(19483635)--After JTS Completion
UnitOfWork(19483635)--release unit of work
ClientSession(3755648)--client released
ClientSession(8184738)--client released
ServerSession(25450642)--client acquired
I'm using the:
server.setExternalTransactionController(new WebLogicJTSExternalTransactionController());
setup and I've got my session.xml setup for External Transaction Controller = true.
Please help, I'm stumped!
Thanks!

I don't know if you will find this helpful because I am working with WebSphere 5.0/Toplink 9.0.4.4.
I do believe you have to commit the unit of work. The unit of work is supposed to know the current UserTransaction state and should determine whether to perform the commit or not.
For reference, I have been able to integrate with UserTransactions successfully. My code has the following characteristics:
- The client session is retrieved from the Server object using acquireClientSession()
- The unit of work is retrieved using acquireUnitOfWork() on the client session.
- I DO call commit() on the unit of work when I am done with my updates (your email indicated you were not committing?)
The work is not committed to the database until UserTransaction.commit() is invoked. I verified this in the debugger by stepping through.
The integration works better than I expected, because the UnitOfWork determines at commit time whether it is controlling the transaction or not. At least it behaves that way. If my code starts a UserTransaction before creating the unit of work, it waits for my code to commit. If my code does not start, the UnitOfWork commits itself.
I hope this helps.
-John

Similar Messages

  • OK, very close to integrating WL8.1Port/TL/UserTransactions... Please help!

    OK, I'm nearly there. I can create my UserTransaction, query from a ClientSession, use getActiveUnitOfWork from my ClientSession, BUT when I commit the UserTransaction, NOTHING goes back to the database, and no errors are thrown.
    And I'm not commit()-ing on the UnitOfWork.
    here's the portion of the low which shows the UserTransaction commit:
    message: Obtain and begin a javax.transaction.UserTransaction: 9061763 for DAOImpl: 8184738
    ServerSession(25450642)--client acquired
    ClientSession(3755648)--acquire unit of work: 19483635
    UnitOfWork(19483635)--JTS register
    2004-10-08 00:59:14,734 DEBUG com.emc.km.dao.toplink.DAOImpl - method: close
    message: Commit the javax.transaction.UserTransaction: 9061763 for DAOImpl: 8184738
    UnitOfWork(19483635)--Before JTS Completion
    UnitOfWork(19483635)--After JTS Completion
    UnitOfWork(19483635)--release unit of work
    ClientSession(3755648)--client released
    ClientSession(8184738)--client released
    ServerSession(25450642)--client acquired
    I'm using the:
    server.setExternalTransactionController(new WebLogicJTSExternalTransactionController());
    setup and I've got my session.xml setup for External Transaction Controller = true.
    Please help, I'm stumped!
    Thanks!

    dfs

  • Hello am using mac book pro ,recently i updated  my computer to OS X MAVERICKS ,where my launch pad in my dock is slow,when i move the track pad to next page in launch pad ,it is very slow ,it takes two to three swipes ,please help me

    hello am using mac book pro ,recently i updated  my computer to OS X MAVERICKS ,where my launch pad in my dock is slow,when i move the track pad to next page in launch pad ,it is very slow ,it takes two to three swipes ,please help me

    Hey rajafromind!
    I have an article here that can help you troubleshoot this issue:
    OS X Mavericks: If graphics-intensive tasks slow down your Mac
    http://support.apple.com/kb/PH13952
    The following article may also have some helpful information for you:
    OS X Mavericks: If your Mac runs slowly
    http://support.apple.com/kb/PH13895
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • While rendering a project in After Effects CC (Mac) , the application closes half way, saying it quit unexpectedly, Please Help!

    So, I have created a cool project that was a lot of hard work in After Effects CC (Mac), While rendering a project in After Effects CC (Mac) , the application closes half way, saying it quit unexpectedly. Here is the link to an error log which is automatically recorded when After Effects crashes:- After Effects Crash (Mac) - Pastebin.com
    I have tried to render this project at least 5 times, shutting and restarting my computer. Please Help!
    Here is my computer specs if needed;
    Operating System: Mac OS X Mavericks version 10.9.4 (13E28)
    Processor: 2.5GHz Intel Core i5
    Memory: 4GB 1600 MHz DDR3
    Graphics: Intel HD Graphics 4000
    Screen Resolution: 13-inch (1280 x 800)
    Hard Drive: 500GB -- 186.49 GB free space.
    Thanks
    Milan

    Element 3d renders using your graphics card. Unlike After Effects, what GPU you're using matters a lot for Element.
    As it is, you don't really have one.
    You could try rendering an image sequence and then picking up your render where it left off when it crashes, but if a certain frame is just too much for your computer to handle, there's not much we can help with. I'd suggest adding a GPU that Element can use.

  • Can't run very simple DOM parsing source on my machine - please help :(

    Hi Guys,
    I am trying to run the following very simple program on my machine to parse a very simple XML file.
    It just returns Document object NULL.
    Same code is working fine on another machine.
    Note: there is no silly mistake. i have valid xml file at valid place.
    Please help.
    import org.apache.xerces.parsers.*;
    import org.w3c.dom.*;
    import org.xml.sax.*;
    import java.io.*;
    class XML
         public static void main(String[] args)
              try{
                   String caseFile = "c:\\case-config\\config.xml";
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   factory.setValidating(true);
                   DocumentBuilder builder = factory.newDocumentBuilder();
                   Document doc = builder.parse(caseFile);
                   System.out.println("\n\n----" + doc);
              }catch(Exception e)
                   e.printStackTrace();
    }

    You could also work with JDOM, which I find easier to use than regular DOM:
    import org.xml.sax.InputSource;
    import java.io.FileReader;
    import org.jdom.input.SAXBuilder;
    import org.jdom.Document;
    String caseFile = "c:/case-config/config.xml";
    InputSource inputSource = new InputSource(new FileReader(caseFile));
    SAXBuilder builder= new SAXBuilder();
    Document document = builder.build(inputSource);Just an alternate suggestion.

  • Palm Centro locks everytime I close a program by pressing End? Please Help

    I recently bought a palm centro for my girlfriend and she is having a huge problem everytime she closes a app or ends a call by pressing the red/end key it locks the phone is there any way to get rid of this feature? I apologize if I didnt post in the right area. Please help Thanks
    --Krayz
    Post relates to: Centro (Sprint)
    Message Edited by Krayz on 07-16-2009 05:06 PM

    If the Centro works like earlier PalmOS phones, the red end key turns the screen on and off; it is not used to close programs. By default, turning off the screen enables the keyguard, so it is necessary to press the center button to use the keyboard again. However, if she has to enter a password, she may need to adjust the settings under Applications (Home button) > Security.

  • When i try to add a photo to facebook, twitter or imessage the app closes. what can i do?? please help me!! :(

    please help me i can't add any photo.

    Go to settings\General\About\Diagnostics and Usage\Diagnostics  and Usage Data- scroll down the logs  to the bottom of the list and check if you are getting many low Memory logs being generated.  Also look for Sprinboard Logs which report crashes.  A high number will indicate problems.
    When a crach occurs next time, go to your home screen (probably will already be there if an App has crashed) and double Tap your home button to reveal the Apps in background bar.  Hold your finger on one till it wiggles then tap the '-' icon in the corner of any Apps you are not using to close them down.
    Try uploading/downloading your photos again.
    if the problem persists you may need to either do a reset or a restore.  Come back for details if your problem persists.
    Regards, Ct

  • Integration of weblogic with obiee:: please help

    I/O error while reading domain directory
    Posted: May 11, 2011 9:58 PM Edit Reply
    I have created a server under admin server. Actually i was trying to integrate weblogic server with obiee.. as i am very new to weblogic i cudn't find the reason for the error.
    I have created a server under admin server. Actually i was trying to integrate weblogic server with obiee.. as i am very new to weblogic i cudn't find the reason for the error.
    while i am starting the server which i created i am getting this error
    error details i will give below.. Thanks for any help and i will highly appreciate it.
    Description: Starting OBIEE server ...
    Status: FAILED
    Begin Time: 5/12/11 10:14:36 AM IST
    End Time: 5/12/11 10:14:37 AM IST
    Exception: I/O error while reading domain directory
    While starting node manager iam getting this error
    SEVERE: Fatal error in node manager server
    java.net.BindException: Address already in use: JVM_Bind
    at java.net.PlainSocketImpl.socketBind(Native Method)
    at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:383)
    at java.net.ServerSocket.bind(ServerSocket.java:328)
    at javax.net.ssl.impl.SSLServerSocketImpl.bind(Unknown Source)
    at java.net.ServerSocket.<init>(ServerSocket.java:194)
    at java.net.ServerSocket.<init>(ServerSocket.java:150)
    at javax.net.ssl.SSLServerSocket.<init>(SSLServerSocket.java:84)
    at javax.net.ssl.impl.SSLServerSocketImpl.<init>(Unknown Source)
    at javax.net.ssl.impl.SSLServerSocketFactoryImpl.createServerSocket(Unkn
    own Source)
    at weblogic.nodemanager.server.SSLListener.init(SSLListener.java:76)
    at weblogic.nodemanager.server.NMServer.start(NMServer.java:206)
    at weblogic.nodemanager.server.NMServer.main(NMServer.java:377)
    Thank you.

    Hi Lavnya,
    Please can you have a look at the URL's
    /people/jayakrishnan.nair/blog/2005/03/10/integration-of-sap46c-with-bea-weblogic-server
    Provides different options to connect:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/adc7c390-0201-0010-ebb2-c8687bbb7bfc
    regards
    Vijaya

  • Macbook Pro very slow, won't play vids etc. Please help

    Have run the etrecheck diagnostic software, results below:
    Problem description:
    Internet browsing very slow, particularly when scrolling on large pages.
    DVD will only play sound, video is just a black screen.
    Youtube would originally only play small screen, now won’t play at all.
    Generally slow all round - lots of “egg timer”
    EtreCheck version: 2.0.11 (98)
    Report generated 17 November 2014 22:20:16 GMT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2009) (Verified)
      MacBook Pro - model: MacBookPro5,5
      1 2.26 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1280 x 800
      spdisplays_display_connector
    System Software: ℹ️
      Mac OS X 10.6.8 (10K549) - Uptime: 212 days 22:8:28
    Disk Information: ℹ️
      ST9160314ASG disk0 : (149.05 GB)
      S.M.A.R.T. Status: Verified
      - (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 159.70 GB (77.07 GB free)
      HL-DT-ST DVDRW  GS23N disk1 : (6.93 GB)
      S.M.A.R.T. Status: Verified
    USB Information: ℹ️
      Apple Internal Memory Card Reader
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Kernel Extensions: ℹ️
      /Applications/Business Everywhere.app
      [not loaded] WebToGo.Driver.Sierra (1) Support
      [not loaded] com.Huawei.driver.HuaweiDataCardDriver (4.0.3) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMControl (1.1.2) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.1.2) Support
      [not loaded] com.option.driver.OptionGTEdge (1.0.5) Support
      [not loaded] com.option.driver.OptionMM (1.0.4) Support
      [not loaded] com.option.driver.OptionMSD (1.0.0) Support
      [not loaded] com.option.driver.OptionQC (1.1.16) Support
    Problem System Launch Daemons: ℹ️
      [not loaded] org.samba.winbindd.plist Support
    Launch Agents: ℹ️
      [running] com.trusteer.rapport.rapportd.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    User Launch Agents: ℹ️
      [running] Business Everywhere Support
      [loaded] com.adobe.ARM.[...].plist Support
    User Login Items: ℹ️
      iTunesHelper UNKNOWN (missing value)
      Mac_SwapperDemon ApplicationHidden (/Library/Application Support/Birdstep/Mac_SwapperDemon.app)
      3Connect Updater Application (/Applications/3Connect/3Connect.app/Contents/Resources/3Connect Updater.app)
      Firefox UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      DirectorShockwave: Version: 11.0.3r470 Support
      Flip4Mac WMV Plugin: Version: 2.2.1.11  Support
      AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.6.6
      iPhotoPhotocast: Version: 7.0
      NP_2020Player_IKEA: Version: 5.0.94.1 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.04 - SDK 10.6 Support
      Scorch: Version: 6.1.0 Support
      JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
    Audio Plug-ins: ℹ️
      iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Rapport  Support
    Time Machine: ℹ️
      Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
          6% rapportd
          4% WindowServer
          3% WebProcess
          2% PluginProcess
          0% SystemUIServer
    Top Processes by Memory: ℹ️
      365 MB WebProcess
      245 MB rapportd
      112 MB Safari
      69 MB WindowServer
      41 MB PluginProcess
    Virtual Memory Information: ℹ️
      13 MB Free RAM
      888 MB Active RAM
      442 MB Inactive RAM
      534 MB Wired RAM
      97.51 GB Page-ins
      41.90 GB Page-outs
    Problem description:
    Internet browsing very slow, particularly when scrolling on large pages.
    DVD will only play sound, video is just a black screen.
    Youtube would originally only play small screen, now won’t play at all.
    Generally slow all round - lots of “egg timer”
    EtreCheck version: 2.0.11 (98)
    Report generated 17 November 2014 22:20:16 GMT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2009) (Verified)
      MacBook Pro - model: MacBookPro5,5
      1 2.26 GHz Intel Core 2 Duo CPU: 2-core
      2 GB RAM
      BANK 0/DIMM0
      1 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      1 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1280 x 800
      spdisplays_display_connector
    System Software: ℹ️
      Mac OS X 10.6.8 (10K549) - Uptime: 212 days 22:8:28
    Disk Information: ℹ️
      ST9160314ASG disk0 : (149.05 GB)
      S.M.A.R.T. Status: Verified
      - (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 159.70 GB (77.07 GB free)
      HL-DT-ST DVDRW  GS23N disk1 : (6.93 GB)
      S.M.A.R.T. Status: Verified
    USB Information: ℹ️
      Apple Internal Memory Card Reader
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Kernel Extensions: ℹ️
      /Applications/Business Everywhere.app
      [not loaded] WebToGo.Driver.Sierra (1) Support
      [not loaded] com.Huawei.driver.HuaweiDataCardDriver (4.0.3) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMControl (1.1.2) Support
      [not loaded] com.ZTE.driver.ZTEUSBCDCACMData (1.1.2) Support
      [not loaded] com.option.driver.OptionGTEdge (1.0.5) Support
      [not loaded] com.option.driver.OptionMM (1.0.4) Support
      [not loaded] com.option.driver.OptionMSD (1.0.0) Support
      [not loaded] com.option.driver.OptionQC (1.1.16) Support
    Problem System Launch Daemons: ℹ️
      [not loaded] org.samba.winbindd.plist Support
    Launch Agents: ℹ️
      [running] com.trusteer.rapport.rapportd.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
    User Launch Agents: ℹ️
      [running] Business Everywhere Support
      [loaded] com.adobe.ARM.[...].plist Support
    User Login Items: ℹ️
      iTunesHelper UNKNOWN (missing value)
      Mac_SwapperDemon ApplicationHidden (/Library/Application Support/Birdstep/Mac_SwapperDemon.app)
      3Connect Updater Application (/Applications/3Connect/3Connect.app/Contents/Resources/3Connect Updater.app)
      Firefox UNKNOWN (missing value)
    Internet Plug-ins: ℹ️
      DirectorShockwave: Version: 11.0.3r470 Support
      Flip4Mac WMV Plugin: Version: 2.2.1.11  Support
      AdobePDFViewerNPAPI: Version: 11.0.04 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.6.6
      iPhotoPhotocast: Version: 7.0
      NP_2020Player_IKEA: Version: 5.0.94.1 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.04 - SDK 10.6 Support
      Scorch: Version: 6.1.0 Support
      JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
    Audio Plug-ins: ℹ️
      iSightAudio: Version: 7.6.6
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Flip4Mac WMV  Support
      Rapport  Support
    Time Machine: ℹ️
      Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ℹ️
          6% rapportd
          4% WindowServer
          3% WebProcess
          2% PluginProcess
          0% SystemUIServer
    Top Processes by Memory: ℹ️
      365 MB WebProcess
      245 MB rapportd
      112 MB Safari
      69 MB WindowServer
      41 MB PluginProcess
    Virtual Memory Information: ℹ️
      13 MB Free RAM
      888 MB Active RAM
      442 MB Inactive RAM
      534 MB Wired RAM
      97.51 GB Page-ins
      41.90 GB Page-outs

    Your MBP needs more RAM based on the quantity of 'Page outs' vs 'Page ins'.  4 GB should be the minimum upgrade, 8 GB would be better.  The RAM specifications for a 2009 MBP are;  204-pin PC3-8500 (1066 MHz) DDR3 SO-DIMM.  The best sources of Mac compatible RAM are OWC and Crucial.
    Delete any software for mobile communications devices that are no longer using.
    Ciao.

  • LSO integration with Skillsoft via PI - Please help

    Hello All,
    I am working on LSO integration with Skillsoft via PI. I have already referred the PDF XI Configuration for SkillSoft Integration and also referred to the existing discussion posts in SDN
    The flow of interface in my scenario is
    Portal(FrontEnd) <-> ECC(BSP Application at Backend) <-> PI <---> External Learning Vendor(SkillSoft).
    1) Commnication is from SAP LSO System to Third Party(Skill Soft) through PI(XI).
    2) It will be synchronous call.
    3 ) From portal user should be able to register, book,Lauch, or Track the course and will get response back to SAP LSO system/portal from Skill Soft.
    4) Portal is the frontend and backend is the BSP application(ZHCM_Learning).
    Can you please let me know the details how to handle this scenario and pass the parameters like customerid, assetid,courseid etc to PI(XI). Also let me know what would be the best approach to follow in this scenario..Is there any BAPI / RFC available for this scenario or need to go via proxy.
    If we need to go via proxy.. how to pass data to PI as soon as user clicks on any actions(like registering/launching or booking the course) from portal. BSP is the backend application(ZHCM_Learning). Please guide me if someone has already implemented the similar scenario.
    Thanks
    Shikha

    Does not belong here. Try posting it in BPX or the related functional community.
    VJ

  • Try to back up pictures on verizon cloud but the app gives me error code 1000 please close app and try again...please help I want to set my phone to factory but some of pics didnt save to my sd card

    I have been trying to back up my pictures on Verizon Cloud app but everytime I try to log in I get "error code 10000, close app and try again...I have been avoiding the new update because of all the problems I keep hearing and my phone is already freaking out...

        I appreciate you taking the time to reach out, Stevie5504. Do you show the pictures as being backed up? I would suggest resetting the app by heading into Settings > Apps > Manage Apps > ALL > Verizon Cloud > Clear Cache and Data.
    YosefT_VZW
    Follow us on Twitter @VZWSupport

  • Session corruption in very basic scenario!!!!!Please help me

    Dear All,
    I am facing a problem regarding to Session expiry
    I have two applications app1, app2 deployed on same server (WebLogic Server 8.1 SP3) on Windows 2000
    app1 url is http://localhost:7001/app1 (in domain domain1)
    app2 url is http://localhost:7001/app2 (in domain domain2)
    well, there is facility in the form of Link to open app2 from app1 as both are the applications of the same company
    I have just written complete path of second application in the target of link in app1
    String strTarget = �http://localhost:7001/targetwebmodule/targetservlet�;
    out.println("<a href='"+response.encodeRedirectURL(strTarget)+"' target='_blank'>Target Application</a><br><br>");
    in the first page of app2, there is code to invalidate the session, as it is a login page, means if session already exist then invalidate it,
    after the opening of app2, when I tried to navigate in app1, I got problem about session expiry,
    Both applications are quite independent (deployed on same server at different domains), why they are mixing the session with each other
    This is the problem with servlets, i tried it with simple jsps, it is still there.
    Looking for your positive response
    Best regards,
    Waseem Aslam
    [email protected]

    Well, in first application there is a hyper link, on
    its click a new window is opened, in its address bar
    the address of the 2nd application is visible.
    String strTarget =
    �http://localhost:7001/targetwebmodule/targetservlet�;
    out.println("<a
    href='"+response.encodeRedirectURL(strTarget)+"'
    target='_blank'>Target Application</a><br><br>");Well there goes the easy answer ;-( Sorry, don't know why.

  • I have had my iMac in storage for the past 3 years. Now I want to get on my computer but can't but am unable to. I'm very frustrated as to what to do. Please help.

    I have had my iMac in storage for the past three years. Now that I finally have it unpacked I want to get on it but am unable to due to the fact I can not remember my username and password for this computer.  It runs OS 10.4 Tiger.  Nowhere have I been able to find where i wrote this info down. Need help.

    Get the Mac to set up  an additional administrative account.  You can then change the password on your old account.
    Start with your computer power off.  Hold down command-s. Power on your computer.  
    Type in the following:
    The first two commands will depend on your release of Mac OS X.  Look at what is typed out in the console to determine the exact format.
    # Type the follow two instructions to access the startup disk in read/write. Press return after each command.
    # in case of partial success repeat this command until errors go away.
    /sbin/fsck -fy
    /sbin/mount -uw /
    cd /var/db
    pwd
    #List all files. The l is a lower case L.
    ls -a
    #The move command acts as a rename command in this format.
    mv -i  .applesetupdone .applesetupdone.old
    # reboot  your mac
    shutdown -r now
    Once you've done that the computer reboots and it's like the first time you used the machine. Your old accounts are all safe. From there you just change all other account passwords in the account preferences!!
    Limnos adds detailed explainations:
    http://discussions.apple.com/message.jspa?messageID=8441597#8441597
    The above the idea came from a post by JoseAranda at September 9, 2006 3:48 AM
    http://www.askdavetaylor.com/how_do_i_reset_my_mac_os_x_admin_root_password.html
    You will need to scroll down to see this post.  Search for applesetupdone
    This method is mentioned in an apple support page without giving an explanation.
    Once you have a new administrative account, you can change the password of your old administrative account
    blue apple > System Preferences > Accounts

  • PSE 7 is frozen with images in it - i dont want to force close and loose them - please help!!

    I load to iphot and transfer to PSE - my computer is very full and PSE has given me nothing but a colorwheel - i dont want to force close and lose what's in there  - please help me!!
    Thanks!!

    well, I can't answer questions about iPhoto, but either the photos are on your hard disk somewhere (in which case you won't lose them), or they are not on your hard disk somewhere (in which case I hope you have made recent backups).
    So which is it? Can you find the photos on your hard disk, or not?

  • Infrared Remote not working unless held very close to AppleTV

    I'm not sure if there is a problem with the remote or AppleTV. The remote only works if held approx. 8 inches away from the AppleTV. The remote works fine with the computer and will control the Mac from the other side of the room. I was expecting the remote to work from at least a few feet away from the AppleTV. It seems pointless having a remote if you have to get up and hold it next to the AppleTV to make it work. The remote App on my iphone works fine anywhere in the room but I would still like the infrared remote to work. Has anyone had any issues similar and is there something I can do to fix this ?

    same for me. sometimes the remote doesn't work unless it's very close to ATV2, but it also appens that it stops working even when it's close. the only way to control ATV2 when it happens is to use the remote app on my iphone. strange, very strange. and it happens from day one. setting up the system with the supplied remote was a real pain in the ...
    Message was edited by: andbal

Maybe you are looking for

  • New Ipod Not Responding To Computer

    First of all, this is one of the original Nanos. 2 GB White. The computer, nor the ipod is responding when I plug it into the USB port on the lap-top. The Ipod won't even turn on at all but the black apple logo was on for a few minutes. Please Help!

  • Getting applets to work in Firefox or IE7!!

    Hi folks. I've been reading Jason Hunters excellet book on Java Servlet Programming and become rather stuck on being able to get applets to work in a browser. 1) I managed to briefly get an Applet to work in IE7. Then things went astray (I say work,

  • Why can I not upgrade my iPhone 4 iOS from version 5.1.1 to 6.x?

    I don't have enough memory, nor do I wish to upgrade to 7.x. I only want to upgrade from 5.1.1 to 6.1.2 at the latest. Why does Apple not let you do this?

  • Best way to publish multiple sites without a .mac account?

    Hi, all you mac geniuses out there! So, I have a mac and a .mac membership and iweb. I use and love all of them. I also have a business in which I am about to incorporate the service of designing websites for various individuals. I would love to be a

  • Sync looks hanging in download phase in C$ALL_SNAPSHOTS (last item)

    The synchronizations are "hanged" for a long period on time in the download phase on the last 2 items: PI_APP_PUB_PROPERTIES C$ALL_SNAPSHOTS The time is bigger if the number of clients synchronizing at the same time is bigger as well. I have taken so