Any active window becomes inactive after 10+ seconds.

Any active window becomes inactive after 10+ seconds. This doesn't just affect the Finder. It makes it very difficult to type an email or post to this forum.
No matter what window I select with the mouse, it will become deselected in a few seconds. I've ruled out the mouse and the keyboard. I don't know of any settings that would cause this. Can anyone offer a solution short of reinstalling the OS. I just finished installing my apps from receiving this computer at work on Friday.

I just reinstalled the OS, as Archive Install with Preserve User settings checked, without running System Update to 10.5.1. All is well now. Though I haven't run all of the installed apps since reinstalling. Some of my apps are not Universal Binary (ex. QuarkXPress 6, MS Office 2004, Adobe ImageReady CS2), though that shouldn't be a problem. Right now I will be ignoring the 10.5.1 update.

Similar Messages

  • Finder and application windows, become inactive after a few seconds

    I just finished restoring a G4 from a disk crash, installed new disk drive and a clean OS X 10.3.9. Than I restored the user's home directory and all end user applications. I am not exactly sure when I noticed this behavior, but I performed the basic troubleshooting steps below already :
    • Removed any third party System Control panel
    • AppleJack complete routine
    • Removed Finder plist
    • Switched to another user, with same result
    • Booted up in SAFE MODE, no change either
    • Reviewed system logs and other logs, and found no hint to his problem
    • Monitored Activity Viewer for unknown services running
    About every 15 seconds, the foremost window becomes grayed out/inactive. Clicking on it makes it active again, and if you start typing anything, it will not complete, due to the window going inactive again.
    I have researched the net, but found not similar issue reported.
    So if anyone can shed some light on this, short of re-installing the OS, it would make my long day or night by now.
    Thanks in advance.

    Will I lose my emails I have on there? I have numerous client email files and can't afford to lose any of them. I do have everything backed up but I'm fearful of losing important client info. What if something happened during the back up and it doesn't have my files?

  • Firefox tabs close when I click on a tab and windows become unresponsive after I launch a site. Using latest version for MacOSX. How do I fix this bug? Have already tried a bunch of things.

    Firefox tabs close when I simply click on a tab and windows become unresponsive after I launch a site. I am using the latest version for MacOSX but this happened a couple days ago with an older version of Firefox as well. Is this some kind of bug? How do I fix this bug? Have already tried a bunch of things like clearing/reinstalling etc. This does not help.
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    You can middle click a link to open that link in a new tab.
    *Open Link in New Tab: https://addons.mozilla.org/firefox/addon/open-link-in-new-tab/
    *Tab Utilities Lite: https://addons.mozilla.org/firefox/addon/tab-utilities-lite/

  • Active Screen becomes inactive then active....and so on.

    Very strange phenomina. The active screen in whatever program I am using alternates between being able to type text and then becomes inactive while type.
    Does anyone have any idea what could be the cause of this?
    Any help would be greatly appreciated.
    Thank You.

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • GlassPane becomes inactive after clicking JInternalPane's resize border

    Hi all,
    I wrote a program which has a JFrame with a JDesktopPane on it's content pane.
    Then I add two JInternalFrames on the desktop pane, and my own glass pane by JFrame's setGlassPane() method.
    In my glass pane, I intercept all mouse events for the glass pane and If the event comes up NOT on the JDesktopPane, I convert and forward the event to component beneath the glass pane.
    This almost works fine except two problems.
    One is that once I pressed mouse button on the resize border of a JInternalFrame, the glass pane stops forwading event. It seems to become inactive.
    Second, if I move mouse cursor on the JinternalFrame's resize-border, the cursor does not change to resize-cursor, while it changes to resize-cursor If I remove the glass pane.
    Attached is the sample program (in one file) to recreate the problems.
    If glass pane is working, the message "forward <EVENT_TYPE> event to <COMPONENT_CLASS_NAME>" will be shown on stdout.
    I have a serious and very complecated reason to use glass pane. So I must overcome thease problems anyhow.
    I appreciate any idea or help. Thanx in advance.
    package GlassPaneTest;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Point;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import javax.swing.JComponent;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.SwingUtilities;
    public class GlassTest extends JFrame {
        public static void main( String[] args ) {
            SwingUtilities.invokeLater( new Runnable() { public void run() {
                new GlassTest();
        public GlassTest() {
            super("");
            JDesktopPane desktop = new JDesktopPane();
            getContentPane().add(desktop);
            JInternalFrame frame1 = createFrame("1",  50, 20);
            JInternalFrame frame2 = createFrame("2", 300, 20);
            desktop.add(frame1);
            desktop.add(frame2);
            Glass glass = new Glass(desktop);
            setGlassPane(glass);
            glass.setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setSize(600,300);
            setVisible(true);
        private JInternalFrame createFrame(String title, int x, int y) {
            JInternalFrame f = new JInternalFrame(title,true,true,true,true);
            f.setPreferredSize(new Dimension(200,200));
            f.setLocation(x, y);
            f.pack();
            f.setVisible(true);
            return f;
        public class Glass extends JComponent
                        implements MouseListener, MouseMotionListener {
            JDesktopPane     desktop;
            public Glass(JDesktopPane desktop){
                this.desktop = desktop;
                addMouseListener(this);
                addMouseMotionListener(this);
            public void mouseMoved(MouseEvent e) { redispatch(e); }
            public void mouseDragged(MouseEvent e) { redispatch(e); }
            public void mouseClicked(MouseEvent e) { redispatch(e); }
            public void mouseEntered(MouseEvent e) { redispatch(e); }
            public void mouseExited(MouseEvent e) { redispatch(e); }
            public void mousePressed(MouseEvent e) { redispatch(e); }
            public void mouseReleased(MouseEvent e) { redispatch(e); }
            private void redispatch(MouseEvent e) {
                Point p = e.getPoint();
                int id = e.getID();
                long when = e.getWhen();
                int mod = e.getModifiers();
                int clicks = e.getClickCount();
                boolean trigger = e.isPopupTrigger();
                Component c = SwingUtilities.getDeepestComponentAt(desktop, p.x, p.y);
                Point cp = SwingUtilities.convertPoint(this, p, c);
                if (c==null) return;
                showEvent(c, id);
                MouseEvent me = new MouseEvent(c, id, when, mod, cp.x, cp.y, clicks, trigger);
                c.dispatchEvent(me);
            public void showEvent(Component target, int id) {
                String E="UNKNOWN";
                switch (id) {
                case MouseEvent.MOUSE_CLICKED: E="CLICKED"; break;
                case MouseEvent.MOUSE_DRAGGED: E="DRAGGED"; break;
                case MouseEvent.MOUSE_ENTERED: E="ENTERED"; break;
                case MouseEvent.MOUSE_EXITED: E="EXITED"; break;
                case MouseEvent.MOUSE_MOVED: E="MOVED"; break;
                case MouseEvent.MOUSE_PRESSED: E="PRESSED"; break;
                case MouseEvent.MOUSE_RELEASED: E="RELEASED"; break;
                if (target instanceof JDesktopPane) return;
                System.out.println("forwad "+E+" event to "+target.getClass().getName());
    }

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • The transaction is no longer active - Transaction timed out after 30 second

    We have an intermittent error here, and I'm a rookie. The error results in a 500 being sent to the customer every 10th-20th POST and only occurs under heavy load. The heavy loading is over the for the day, but it'll be back.
    My first suspicion was the app code doing transaction work and having database performance problems. But the app is non-transactional and the database is fine. The server farm nodes (4) are all experiencing the problems at equal rates, and the other apps on the farm are fine, so it appears to be app-specific rather than rooted in server state or database state.
    I looked at the stack a little more closely and it appears to be some kind of internal persistence issue, but a completely foreign one to me. We have no Persistent Stores configured, so I don't know where to even start on this puppy.
    EJB Exception occurred during invocation from home: weblogic.ejb.container.internal.StatelessEJBLocalHomeImpl@d1e1f4 threw exception: <1.0.0 nonfatal general error> org.apache.openjpa.persistence.PersistenceException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 30 seconds
    BEA1-32AE928C966AC66F424D]'. No further JDBC access is allowed within this transaction.
    <1.0.0 nonfatal general error> org.apache.openjpa.persistence.PersistenceException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 30 seconds
    BEA1-32AE928C966AC66F424D]'. No further JDBC access is allowed within this transaction.
    at org.apache.openjpa.jdbc.sql.DBDictionary.newStoreException(DBDictionary.java:3784)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:97)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:83)
    at org.apache.openjpa.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:59)
    at org.apache.openjpa.jdbc.kernel.SelectResultObjectProvider.handleCheckedException(SelectResultObjectProvider.java:155)
    at org.apache.openjpa.lib.rop.EagerResultList.<init>(EagerResultList.java:40)
    at org.apache.openjpa.kernel.QueryImpl.toResult(QueryImpl.java:1219)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:987)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:839)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:770)
    at kodo.kernel.KodoQuery.execute(KodoQuery.java:47)
    at org.apache.openjpa.kernel.DelegatingQuery.execute(DelegatingQuery.java:525)
    at org.apache.openjpa.persistence.QueryImpl.execute(QueryImpl.java:229)
    at org.apache.openjpa.persistence.QueryImpl.getResultList(QueryImpl.java:269)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactionsExcludingApplication(ApproveApplicationHelper.java:167)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactions(ApproveApplicationHelper.java:129)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.stageAction(ApproveApplicationHelper.java:74)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean.performAction(ApproveApplicationSessionBean.java:348)
    at sun.reflect.GeneratedMethodAccessor2150.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:281)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at weblogic.ejb.container.injection.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:68)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)
    at $Proxy365.performAction(Unknown Source)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.performAction(ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.java:148)
    at com.company.buapp.si.ApplicationWS.performAction(ApplicationWS.java:114)
    at sun.reflect.GeneratedMethodAccessor2149.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:50)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:42)
    at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:247)
    at com.sun.xml.ws.server.sei.SEIInvokerPipe.process(SEIInvokerPipe.java:97)
    at weblogic.wsee.jaxws.MonitoringPipe.process(MonitoringPipe.java:98)
    at com.sun.xml.ws.protocol.soap.ServerMUPipe.process(ServerMUPipe.java:62)
    at com.sun.xml.ws.server.WSEndpointImpl$1.process(WSEndpointImpl.java:139)
    at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:153)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:235)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:97)
    at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:36)
    at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:218)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3395)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 30 seconds
    BEA1-32AE928C966AC66F424D]'. No further JDBC access is allowed within this transaction.
    at weblogic.jdbc.wrapper.JTSConnection.checkIfRolledBack(JTSConnection.java:178)
    at weblogic.jdbc.wrapper.JTSConnection.checkConnection(JTSConnection.java:188)
    at weblogic.jdbc.wrapper.ResultSet.preInvocationHandler(ResultSet.java:57)
    at weblogic.jdbc.wrapper.ResultSet_oracle_jdbc_driver_OracleResultSetImpl.next(Unknown Source)
    at org.apache.openjpa.lib.jdbc.DelegatingResultSet.next(DelegatingResultSet.java:106)
    at org.apache.openjpa.jdbc.sql.ResultSetResult.nextInternal(ResultSetResult.java:210)
    at org.apache.openjpa.jdbc.sql.SelectImpl$SelectResult.nextInternal(SelectImpl.java:2209)
    at org.apache.openjpa.jdbc.sql.AbstractResult.next(AbstractResult.java:168)
    at org.apache.openjpa.jdbc.kernel.SelectResultObjectProvider.next(SelectResultObjectProvider.java:99)
    at org.apache.openjpa.lib.rop.EagerResultList.<init>(EagerResultList.java:35)
    at org.apache.openjpa.kernel.QueryImpl.toResult(QueryImpl.java:1219)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:987)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:839)
    at org.apache.openjpa.kernel.QueryImpl.execute(QueryImpl.java:770)
    at kodo.kernel.KodoQuery.execute(KodoQuery.java:47)
    at org.apache.openjpa.kernel.DelegatingQuery.execute(DelegatingQuery.java:525)
    at org.apache.openjpa.persistence.QueryImpl.execute(QueryImpl.java:229)
    at org.apache.openjpa.persistence.QueryImpl.getResultList(QueryImpl.java:269)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at kodo.persistence.KodoQueryImpl.getResultList(KodoQueryImpl.java:213)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactionsExcludingApplication(ApproveApplicationHelper.java:167)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.createNewTransactions(ApproveApplicationHelper.java:129)
    at com.company.buapp.buslogic.helpers.ApproveApplicationHelper.stageAction(ApproveApplicationHelper.java:74)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean.performAction(ApproveApplicationSessionBean.java:348)
    at sun.reflect.GeneratedMethodAccessor2150.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:281)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at weblogic.ejb.container.injection.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:68)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)
    at $Proxy365.performAction(Unknown Source)
    at com.company.buapp.buslogic.session.ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.performAction(ApproveApplicationSessionBean_gc4fhc_ApproveApplicationSessionLocalImpl.java:148)
    at com.company.buapp.si.ApplicationWS.performAction(ApplicationWS.java:114)
    at sun.reflect.GeneratedMethodAccessor2149.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:50)
    at weblogic.wsee.jaxws.WLSInvoker.invoke(WLSInvoker.java:42)
    at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:247)
    at com.sun.xml.ws.server.sei.SEIInvokerPipe.process(SEIInvokerPipe.java:97)
    at weblogic.wsee.jaxws.MonitoringPipe.process(MonitoringPipe.java:98)
    at com.sun.xml.ws.protocol.soap.ServerMUPipe.process(ServerMUPipe.java:62)
    at com.sun.xml.ws.server.WSEndpointImpl$1.process(WSEndpointImpl.java:139)
    at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:153)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:235)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:97)
    at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:36)
    at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:218)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3395)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2140)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2046)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)

    This was actually my first conclusion as well. But when I went to the Data Source for this connection, I found it's a non-transactional driver. That's what made me go back and give the trace a second look. I don't see any references to the Data Source in question. It's OpenJPA stuff and Session persistence stuff.Non-XA drivers can still participate in an XA transaction via a variety of JDBC data source options - for example, labeled "1PC" and "LLR" on the console. (If you want to understand the particulars search for "JTS" or "LLR" in the JDBC edocs).
    You seem to be suggesting maybe the setting can be made in a config doc, possibly of the app itself, right? Right. EJBs have a transaction-timeout attribute.
    As opposed to setting it in the console. WebLogic has a domain wide default transaction-timeout setting that can be set on the console, but I tend not to recommend using it. In addition, there's something called a "deployment plan" which can be used to override some of the common EJB attributes via configuration, but I'm not personally familiar with its usage.
    But isn't the setting vapor if we're using a nonXA driver?No.
    I wonder if this thing couldn't be telling me it's waiting on the persistence subsystem to come available to store simple session data? Sometimes the problem is that there are periodic app requests that are more complex/larger than others. Sometimes the system is simply overloaded, and takes 30 seconds to honor a request that might normally take 10 seconds.
    That other app is all about persistence. What if app2 is sucking some persistence subsystem dry and app 1 is waiting just to store session data? Could be.
    If the nonXA thing really does kill the quick timeout workaround, how could I health-check the persistence subsystem?Don't know. At a wild guess I'd check for CPU's at 100% on all involved serves, and examine database stats.

  • SOA services become inactive after bouncing SOA

    Hello Experts:
    Environment:
    SOA 11.1.1.6.0
    Web Logic 10.3.6
    2 Node Cluster
    Node1 --> Admin Server, Node Manager, Managed Server 1
    Node2 --> Node Manager, manager Server 2
    http Proxy Host --> node.domain.com
    2 managed servers and 1 VIP pointing to BOTH node1 node 2.
    For example:
    Managed Server 1--> node1.domain.com
    Managed Server 2 --> node2.domain.com
    VIP (http proxy) --> node.domain.com
    (This points to node1 and node2)
    We are able to create service, deploy and use it successfully. The issue is, Once we bounce the SOA server, the services become inactive and the ONLY way to make ti work is to re-deploy!!!
    Note:
    This issue happens ONLY when we use the VIP
    Anyone seen this before??
    Any help is appreciated..

    @Sri_Sonti
    In the Admin Console, I can see both users in the security realm with the following configs:
    weblogic:
    all atributes with the "value" column blank
    groups: Administrators
    OracleSystemUser
    all atributes with the "value" column blank
    groups: OracleSystemGroup
    Also I have not found the system-jazn-data.xml file you mentioned. In that folder there's only a readme.txt file.
    Best Regards,
    luismcs
    Enter Cookie as format:
    (ex: name=val;) separate with ';'
    OKCancel

  • Window.opener becoming null after 10 seconds

    Wondering if anyone else has ran into this problem...
    function refreshMe()
    var openerObj = window.opener;
    window.close();
    alert(openerObj);
    openerObj.opener.location.href = openerObj.opener.location.href;
    openerObj has a value of [object DOMWindow] when a new window pops up. But when I wait approximately 10 seconds the value is becomes null.
    Any suggestions or advice you may have is appreciated.

    Basically I'm using Javascript to pop up a window (child). That window changes to another URL (sub child) after a user selection... Once that pop up form submission is complete I want to refresh the original parent window and close the sub child.
    To accomplish this I'm using window.opener.opener.location.href (the original URL) which should be saved by Safari. The problem is after approx. 10 seconds the window.opener variable becomes null. I'm guessing this is something related to Sarfari and not my code...
    However, I'm open to any suggestions. Thank you.

  • There is no audio output on my MBA in the system preferences-sound folder. Therefore no sound comes from my computer. At the same time this happened, any streaming video stopped playing after 11 seconds, as well as iTunes will not play any song. Help!?

    Hello everyone.
    i have a 15" MBA circa 2011 running Lion 10.7.5 and my sound has gone, There is a no sound circle on my volume display and in system preferences sound my options for output is empty. At the same time this happened I noticed 2 things: 1) itunes would not actually play any audio track and every video i streamed stopped after a few seconds (usually 11s) but not always.
    I have tried following some tips I have found online like going into MIDI and fixing the problem there, restarting in safe mode. Resetting with PRAM (or something that sounds like that).
    Does anyone have any insight on this? At this point i'm thinking it's time to reload Lion but I don't really know how to go about that without losing all of my files.
    Please Help
    Thanks

    Hello JaboorMBA2011,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Troubleshooting issues with no audio from built-in speakers on Macs
    http://support.apple.com/kb/ts1574
    Have a nice day,
    Mario

  • Window becomming inactive

    I am trying to create a simple window using a JFrame, and some buttons. My code is correct, I'm sure of this, everything is displaying correctly, however after my app loads, the background of the frame turns dark purple, and none of my buttons are clickable (I have an action listener written for them, as well as tool tips to see if I can even roll over and they don't work either) is there something I'm missing? I've been using java for school for a few years now and I've never ran in to this problem before. This is the first time I've tried programming swing in linux however, could this be the problem?
    Thanks!

    Post your code here to see if we can spot any problem.

  • Active tab appears inactive after switching to Safari

    Hi,
    I've had this problem since I updated to Leopard.
    When I switch to Safari, e.g. with command+tab or change space, the active tab of Safari seem inactive while the rest of the application seems active (the tab has a lighter gray).
    Here is a screenshot of it http://img.skitch.com/20080403-1i26eeynm4re5fiqmgipai5q8r.png
    This is not just ugly, I have to click on another application then switch back to get rid of it, and I can't use shortcuts correctly – if I press command+w Safari asks me if I want to close all open tags, and I can't use spacebar to scroll forward in sites.
    I haven't found anything about this error, I'm getting desperate
    ps. removing the plist file didn't work

    Hi,
    I've had this problem since I updated to Leopard.
    When I switch to Safari, e.g. with command+tab or change space, the active tab of Safari seem inactive while the rest of the application seems active (the tab has a lighter gray).
    Here is a screenshot of it http://img.skitch.com/20080403-1i26eeynm4re5fiqmgipai5q8r.png
    This is not just ugly, I have to click on another application then switch back to get rid of it, and I can't use shortcuts correctly – if I press command+w Safari asks me if I want to close all open tags, and I can't use spacebar to scroll forward in sites.
    I haven't found anything about this error, I'm getting desperate
    ps. removing the plist file didn't work

  • Itunes 11.4 crashes on windows 8.1 after few seconds of launch

    the new version of itunes for pc 11.4 is crashing everytime i launch itunes, i tried everything to fix this problem but none solved the issue. My pc runs windows 8.1, 64 bits, everything else is fine and up to date except itunes. i tried to uninstall it and reinstall it, restored to a previous restore point then install it again...still the same problem. I am not able to sync anything..please apple fix this issue before i get my hands on the iphone 6 plus

    Hello khaloudi92,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue with launching iTunes on your Windows PC please follow the steps in the article below.
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    Take care,
    Alex H.

  • Active window deactivates

    After installing Mavericks, my active window won't remain active.  Whether typing in an active window or not, within 10 seconds the active window become inactive and I have to mouse click to activate and within 10 seconds it will deactivate again, constantly.
    Using iMac, 12 GB RAM, added SSD last year. Those are the only things that are unique about my iMac.

    After spending about 7 hours with 4 different Apple tech support personnel, including having the issue escalated to senior level technicians, my problem would occasionally stop occurring, but soon re-occur !!  Very, very frustrating.
    I finally brought my iMac to a Genius, and he was able to drill down to the problem that was affecting my Mac.  I don't know if this will be the same "right" fix for others, but it has definitely and finally fixed my problem.  I cannot explain this, because I don't understand the technical explanation I was provided, but he found there was something that was downloaded from a 3rd party application that conflicted with Mavericks.  He prepared the following explanation for me to share on this forum, hoping it will help others find/fix their similar problem:
    "It appears the issue is related to a third party tool “OnlineBackupd”, which had a binary application under /usr/local/bin and a LaunchAgent script at /Library/LaunchAgents.
    Checking Console.app (/Applications/Console.app) reveals that the OnlineBackupd app is crashing every 10 seconds, un-focusing whatever window was currently in-focus.
    Removing the two aforementioned files and restarting the computer will do the trick."
    I hope this helps you, or someone else, fix their similar problem.

  • I  bought a new laptop (Dell ProBook; Windows 7.1) after a catastrophic crash of my old one. I installed my licensed copy of Photoshop CS3 on my new machine, and find that my activation key will not work.  Is this remediable, or am I simply stuck buying a

    As indicated in the header question, I've been unable to get PS CS3 to run (other than in "trial period" mode) on my new laptop. I purchased CS3 a few years ago and had it up and running on my former (now deceased) machine; I still had the activation key. I installed the program on my new machine (running Windows 7.1), seemingly uneventfully. But when I now enter the activation key, I get an error message informing me that the number is not valid.
    Does the activation key become invalid after a certain time period, or is there something I can fix? I'm interested in upgrading, but would like to have the familiar version available until I get around to doing so (just retired; lots of time-consuming changes afoot).
    Thanks for any help/info.
    Dale Hammerschmidt
    (Professor Emeritus, University of Minnesota)

    Try this link, they deal with serial number issues.
    Serial number and activation support

  • Safari not displaying active window

    Safari has stopped displaying any active windows. Safari is open and the menu says windows are open but I cannot see them. When I open a new window it seem to flick off to the right of the screen like there is a second monitor. All I see is the normal desktop. I cannot see any safari window.
    Please help with possible causes and fixes

    Thank you to all that responded. I seem to have fixed the problem by merging screens in the displays utility. I do appear to have two screens/displays set up, the other is Sony tv monitor. This was a leftover from when I experimented with Twonky, not a huge success.
    I am using osx 10.8 latest update and will be looking for a way to delete this other monitor set up when I get home later today.

Maybe you are looking for

  • How can I tell if one of my iBooks has an update available?

    I was listening to a podcast where the author of a particular iBook, which I have purchased, stated that there was an updated version available. My questions are: Is there some way to know that there is an update to an iBook I have purchased and have

  • Some texts being sent as SMS instead of iMessage

    Some of my texts are being sent as SMS (green) instead of iMessages (blue) even though I know these people have iPhones.  It's only certain people it happens to as I have other friends who have iPhones and messages are being sent as iMessages like th

  • Hit highlighting (PDF) is not working with Safari

    We have been facing a weird problem with PDF documents displayed in Safari. This problem is reproducible in many of our machines. The problem is like this.. Adobe Reader has support for hit highlighting in PDF documents when it is being viewed in any

  • WRT54G help - Web pages not loading

    I'm running a WRT54G v8.2 to link up my Intel Core Duo iMac (wired), and Xbox360 and iPhone (wireless.) Everything was working great until this morning when certain sites stopped loading or fully loading. (Have made no changes to any settings on the

  • Is it possible to call a  Oracle  Trigger from a Java Application

    Hi Please let me know if is it possible to call a Trigger from a Java/J2EE Application . Thanks