Jdbc connection lost after idle time

Dear users,
i'm using the oracle 10g database. Now i found out that several programs (SQuirreL, QuantumDB,...) which use the ojdbc14 driver are losing connection to the database after about one hour idle time, but it is not set in db configuration to disconnect (eg parameter idle_time is not set). What could be the cause of this? Is this a error of jdbc (the java exception is something like socket lost) or is it a missconfiguration of the db?
Thx for help.

With a simple java program that makes a select on a database table over jdbc after one Hour idle_time this exception happens: (the program is started local on the database server so no firewall or router is between)
java.sql.SQLException: No more data to read from socket
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1118)
at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:1070)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:478)
at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:207)
at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:790)
at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1039)
at oracle.jdbc.driver.T4CStatement.executeMaybeDescribe(T4CStatement.java:830)
at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1132)
at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1272)
at test$1.run(test.java:24)
at test.main(test.java:55)

Similar Messages

  • Wireless connection lost after some time ?

    The wireless internet connection works just fine when browsing safari or the appworld, no problem at all...After locking the ipad and using it a few mins/hours later, I usually lose the internet connection. It says im connected but safari/appworld wont load unless I turn off the wireless connection or renew lease in the options.
    Can someone please tell me why is this happening ?? Its been happening since I got the ipad, so an app cant be the cause ..
    Please help !

    The router firmware has the latest version ... I dont think its something with the router, because I use my laptop wirelessly as well and I dont have such problems. My friend has an iPad 1 and he doesnt have the same problem as mine either ..
    Is there an app that can fix this ??? I thought it might be an email problem because my older Android phone usually lose connection when trying to fetch emails, so I activated PUSH function on the ipad, but that didnt fix the problem
    Please help !!

  • Wi-Fi is getting disconnected after idle time

    I have following configuration:
      Model Name:          MacBook Air
      Model Identifier:          MacBookAir6,2
      Processor Name:          Intel Core i7
      Processor Speed:          1.7 GHz
      Number of Processors:          1
      Total Number of Cores:          2
      L2 Cache (per Core):          256 KB
      L3 Cache:          4 MB
      Memory:          8 GB
      Boot ROM Version:          MBA61.0099.B04
      SMC Version (system):          2.13f7
    After upgrade, Wi-Fi is getting disconnected after idle time of 1-2 Minutes. Are other users facing similar issue. Please help.

    On or the other should solve your issue.
    http://support.apple.com/kb/HT4199
    http://support.apple.com/kb/HT4628

  • My ISP requires a http login. I can use the iPad fine if I am logged in on a PC connected to the same wifi network, but if I login on safari on my ipad, the connection drops after some time.. any workaround?

    My ISP requires a http login. I can use the iPad fine if I am logged in on a PC connected to the same wifi network, but if I login on safari on my ipad, the connection drops after some time.. any workaround?

    TJBUSMC1973 wrote:
    The iPhone is working, as designed and advertised.  In this case, the user failed to educate themselves properly, either by proper research or asking the right questions, before purchasing the device.
    I understand that the OP failed to do research. But then, I wasn't replying to the OP. I was replying to Chris. I have Verizon. I can talk and use data at the same time with my Droid Maxx. Therefore, the problem is not just with the network. It would be technically possible for an iPhone to do that on Verizon/Sprint if Apple had chosen to use a different chip, such as the kind other phone manufacturers have elected to use.
    Of course, this is probably all irrelevant to the OP's issue. It was merely a point of clarification, especially for those people who are used to being able to use both voice and data at the same time on Verizon. When they switch to an iPhone, they are often surprized at the limitation.
    Best of luck.

  • WLS 8.1 SP5 Message bridge doesn't refresh connection after idle time out

    Hi,
    I am seeing in the log after enabling the debug flags that message bridge intermittently stops refreshing the connection without logging further info and causing a production failure.Bridge is forwarding the message from WLS 8.1..5 DQ to the remote MQ 6.0 queue.
    Below is the snippet which doesn't come in the log which suggests that bridge stops refreshing the connection.
    <BEA-200027> <Bridge "CASLDNSenderBridge" works in asynchronous mode and has not received messages for the predefined maximum idle time. The connections to the adapters will be interrupted and reestablished.>
    The above message does appear everytime but intermittently it stops and the messages put after this leading to the exceptions.The bridge has been configured in asynchronous mode and the idle time out is configured as 60 secs.
    Can somebody please let me know if there is any known issue with 8.1 SP5 where message bridge stops refreshing connection intermittently or how to debug this further.

    I would normally suggest raising the issue with support, but I recall hearing that 8.1 is nearing the end of its support cycle, so I'm not sure that's an option for you. Other options:
    - try upgrading to a newer SP, or better yet, a new version of WebLogic
    - try changing to synchronous forwarding
    - examine thread dumps from when the bridge appears to be stalled
    - post the exception that bridge is throwing when it tries to connect
    - try patching MQ (the problem could be on the MQ side, and perhaps an older version of the bridge may not be fully capable of handling all of MQs minor quirks)
    - write a program to (A) detect inactivity on the src destination, and (B) somehow restart the bridge and/or all of WL when this occurs
    Tom

  • Socket connection dies after some time being idle w/o firing event

    Hi,
    I use this code to connecto my server from my Client
              if (socket == null){
                   try{
                        if (pwd.length > 0)
                             System.out.println("opening connection...to "+host+" at port "+port);
                             socket = new Socket(host, port);          
                             toServer = new ObjectOutputStream(socket.getOutputStream());
                             fromServer = new ObjectInputStream(socket.getInputStream());
                             System.out.println("Connection established!");
                             fireClientEvent(new ClientEvent(this, ClientEvent.CONNECTION_ESTABLISHED, ""));
                             this.connected = true;
                             Hashtable<String, String> table = new Hashtable<String, String>();
                             table.put("action", "login");
                             table.put("key", convertToString(pwd));
                             sendObject(table);
                   }catch(IOException e){
                        try{
                             if (socket != null)
                                  socket.close();
                             System.out.println("Error while connecting... Server does not exist!");
                             this.connected = false;                         
                             fireClientEvent(new ClientEvent(this, ClientEvent.SERVER_DOES_NOT_EXIST, getHost()+":"+getPort()));
                        }catch(IOException x){
                             System.out.println("I/O ERROR @ CLIENT CONNECT!");
                             removeAllListeners();
                             x.printStackTrace();
              }And this is how my server responds to client requests:
         public void run()
              ServerSocket server = null;
              Socket socket           = null;
              Hashtable<String, String> ClientInfo = new Hashtable<String, String>(); 
              try{
                   server = new ServerSocket(getPort());
                   //listen for connections
                   while (!stopServer)
                        try{
                             System.out.println("Starting Server at port: "+getPort());
                             socket = server.accept();
                             ClientInfo.put("remoteip", socket.getInetAddress().toString());
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.CONNECTION_REQUESTED, null));
                             ThreadedSocket tsocket = getThreadedSocket(socket);
                             tsocket.addSocketListener(this);
                             tsocket.setMaxSolvingTime(maxSolvingTime);
                             Sockets.add(tsocket);
                             executor.execute(tsocket);
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.CONNECTION_ESTABLISHED, null));
                        }catch (IOException ioe){
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.UNEXPECTED_CONNECTION_ERROR, null));
                             exceptionThrown(ioe);
              }catch(Exception x){
                   exceptionThrown(x);
              }finally{
                   try{
                        server.close();
                        socket.close();
                   }catch (Exception e){
                        exceptionThrown(e);
         }It seems that after some time (aprox. 10-15 minutes) being idle, my client gets disconnected withougt firing any event so the Server thinks the client is still connected but it does not get any messages because the client has closed the connection (I think)
    Am I doing/thinking something wrong?

    Thanks It seems that I am doing something completely wrong.
    I created this object:
    package main;
    import java.util.Hashtable;
    import java.util.Vector;
    public class SocketPinger implements Runnable {
        private Vector<ThreadedSocket> sockets = null;
        Hashtable<String, Object> action = new Hashtable<String, Object>();
        public SocketPinger()
            action.put("action", "scheduled_ping");
        public SocketPinger(Vector<ThreadedSocket> socks)
            this.sockets = socks;
            action.put("action", "scheduled_ping");
        public void run()
             process();
        public void process()
             if (sockets != null)
                  for (ThreadedSocket socket : this.sockets)
                       try
                            socket.sendObject(action);
                       }catch(Exception e){
                            sockets.remove(socket);
        public void setSockets(Vector<ThreadedSocket> socks)
             this.sockets = socks;
    }which I call with this command:
         public class ThreadScheduler
             private SocketPinger pinger;
             private final ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor();
             public void activate()
                 pinger = new SocketPinger(Sockets);
                 scheduler.scheduleWithFixedDelay (pinger, 5, 10, TimeUnit.SECONDS);            
             public void deactivate() {
                 scheduler.shutdown();
         }This makes the Scheduler object wake up every 10 secs and ping all the clients. This works and since then everything seemed to work fine. Today I noticed that when I shut down the client abnormaly (System.exit(0);) the server doesn't understand it. The sendObject() method works fine.
    This is my ThreadedSocket with the sendObject() method:
    public class ThreadedSocket extends Thread
         protected Socket socket;     
         protected ObjectOutputStream toClient;
         protected ObjectInputStream fromClient;
         protected ConnectionPool Pool;
         protected DBManager db;
         public ThreadedSocket(Socket sock, int priority, ConnectionPool pool) throws IOException
              socket = sock;
              this.Pool = pool;
              toClient = new ObjectOutputStream(socket.getOutputStream());
              fromClient = new ObjectInputStream(socket.getInputStream());                    
              setPriority(priority);     
              db = new DBManager(Pool);
         public void sendMessage(String message)
              try{
                   toClient.writeUnshared(message);
                   toClient.flush();
              }catch(Exception e){
         public void sendObject(Hashtable<String, Object> table)
              try{               
                   toClient.writeUnshared(table);
                   toClient.flush();
                   toClient.reset();
              }catch(Exception e){
         }and this is how I initialize the ThreadedSocket on my Server object
         public void run()
              ServerSocket server = null;
              Socket socket           = null;
              Hashtable<String, String> ClientInfo = new Hashtable<String, String>(); 
              try{
                   server = new ServerSocket(getPort());
                   //listen for connections
                   while (!stopServer)
                        try{
                             System.out.println("Starting Server at port: "+getPort());
                             socket = server.accept();
                             ClientInfo.put("remoteip", socket.getInetAddress().toString());
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.CONNECTION_REQUESTED, null));
                             ThreadedSocket tsocket = getThreadedSocket(socket);
                             tsocket.addSocketListener(this);
                             tsocket.setMaxSolvingTime(maxSolvingTime);
                             Sockets.add(tsocket);
                             executor.execute(tsocket);
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.CONNECTION_ESTABLISHED, null));
                        }catch (IOException ioe){
                             fireServerEvent(new ServerEvent(ClientInfo, ServerEvent.UNEXPECTED_CONNECTION_ERROR, null));
                             exceptionThrown(ioe);
              }catch(Exception x){
                   exceptionThrown(x);
              }finally{
                   try{
                        server.close();
                        socket.close();
                        if (scheduler != null)
                             scheduler.deactivate();
                   }catch (Exception e){
                        exceptionThrown(e);
              So I have to make this question unanswered, because it is actually partially answered. Although the server can wake up and ping the clients, I still find it difficult to see if the client really exists after some abnormal termination (i.e. computer dies, or sth similar).

  • JCoRfcProvider: connection lost after a while

    I have created a couple of EJBs and propagated them using JCoRfcProvider to an ABAP system, so that the backend can reach them. But after a while the backend looses the connection to the JCO server process: "program XXX not registered". After a restart of the RFC destination using Visual Admin everything is fine again. It seems that the connection between the systems is closed when it is idle for some time.
    The <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/2c/760e4248fc5133e10000000a155106/frameset.htm">documentation</a> says:
    If an RFC connection is interrupted or terminated, the JCo server automatically
    registers itself again on the same SAP gateway under the same program ID.
    Obviously, this automatic restart is not working, as the connection stays disabled once it has failed.
    Is there a parameter I missed? Is this a JCO bug? How can I get this thing stable?
    Best regards,
    Frank

    netsurferdude2 wrote:
    Hi all,
    Lets start off with some info. I have a XP machine with a WRT310N router but the connection to the router from my computer is wired. I have other computers on the network(a wired XP work comp and a wireless vista laptop). I do have linksys Easylink Adviser but it is was to laggy and doesnt work half the time so I dont use it. My antivirus software is Panda Internet Security 2008.
    My problem has only occurred twice but it has prevented me from trying to make a server again. I have been wanting to host a dedicated counter strike source server in steam for awhile.
    I followed all the port forwarding directions. I get the static ip set up and I open the 27015 port for steam.
    I will make a dedicated server and have a few people join and then I follow. Everything works perfectly for about 5 minutes and then my friends are dropped from the server due to loss of connection. I am still in the server but no one can join or even get info on it meaning the server is not responding.
    I then close out of steam and the server and find I have lost my internet connection. I can not visit any websites, I can not do anything in steam, I cant log onto aim, xfire or anything.
    Now my local connections dont say "Connection lost" like they do when the router is shut off or if I lose the actual connection.
    The only way it seems I can get my connection back is by unplugging the router, waiting 20s and plugging it back in. Then I have to wait about 5 more mins and it will just all of a sudden work.
    Does anyone have an idea of what is happening? Is it the router? My antivirus/firewall?
    Thanks in advance
    Greg
    Message Edited by netsurferdude2 on 08-25-2008 09:26 PM
    Hi
    Try disabling the firewalls and access server side.
    see if any change?
    pe@c3
    "What u Give , is wht u better start expecting to take back".. - http://Forsakenbliss.wordpress.com

  • Is it possible to end a program with frontend after idle time?

    Hi guru's,
    Our users are using TMW (trx PTMW) on a regular basis for entering time data.  It would be real nice to encourage them to close their TMW screens when they have done.
    It would be real nice if the TMW gui (or any other program they leave idle) would get cancelled after X minutes of idle time.  Any pending non saved changes may get lost.
    I' ve looked at the rdisp/gui_auto_logout parameter.  But this cancels the whole session and so they need to log on again.  We'd just like it if they return to their easy access startmenu.
    Any suggestions how to do this? (a system parameter? repair of TMW? job that ends idle gui's?)  I'll reward any usefull suggestion
    Kr,
    Jonathan

    If you want your LabVIEW program from Windows to run on Linux, you need to compile it first with a LabVIEW for Linux version. Be aware that path management is slightly different under Linux. So your Windows application won't run under Linux if you don't prepare for it.
    If you want a LabVIEW / Windows application to interface with LabVIEW / Linux, you can do this with TCP/IP functions, or perhaps even with global variables (not sure if they work under Linux).
    Can't help you with the second question(s). I'd be worried about getting any camera working under Linux and LabVIEW, but I'm not sure if this is a valid concern.
    Regards,
    Wiebe.

  • MacbookPro/Lion 10.7.5 - Kernel panic after idle time - Can log file help in narrowing the problem

    MacbookPro Lion 10.7.5 - My macbook pro panics when i hit any key after an idle time.
    I have disabled Sleep, I am usually connected to an external monitor and external keyboard.
    I have already tried (Cmd+Option+R+P) and re-installing OS in safe mode with Apple Support, but, the problem persists.
    Panic (system crashes) log:
      Source:    /Library/Logs/DiagnosticReports/Kernel_2013-04-27-093207_KAPILs-MacBook-Pro.pan ic
      Size:    9 KB (9,275 bytes)
      Last Modified:    29/04/13 12:59 PM
      Recent Contents:    Interval Since Last Panic Report:  9720 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    CC17CCFF-11B4-4C5E-9AAF-5B6E2451277B
    Sat Apr 27 09:32:07 2013
    panic(cpu 0 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f817355fb, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff806a540628, CR3: 0x0000000000100000, CR4: 0x00000000001606e0
    RAX: 0xffffff7f81792320, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000008
    RSP: 0xffffff807ed4bc80, RBP: 0xffffff807ed4bcb0, RSI: 0xffffff800bf09000, RDI: 0xffffff806a64f000
    R8:  0x0000000000000000, R9:  0xffffff800bc95a80, R10: 0x8000000000100000, R11: 0xffffff80002dad00
    R12: 0xffffff806a64f1c8, R13: 0xffffff806a53e000, R14: 0xffffff800bf09000, R15: 0xffffff806a64f000
    RFL: 0x0000000000010286, RIP: 0xffffff7f817355fb, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffff806a540628, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff807ed4b930 : 0xffffff8000220792
    0xffffff807ed4b9b0 : 0xffffff80002c4794
    0xffffff807ed4bb60 : 0xffffff80002da55d
    0xffffff807ed4bb80 : 0xffffff7f817355fb
    0xffffff807ed4bcb0 : 0xffffff7f81734de7
    0xffffff807ed4bce0 : 0xffffff7f817351bd
    0xffffff807ed4bd10 : 0xffffff7f80cea832
    0xffffff807ed4bd50 : 0xffffff7f817bd383
    0xffffff807ed4bda0 : 0xffffff7f817bf692
    0xffffff807ed4bde0 : 0xffffff7f817bf7c4
    0xffffff807ed4be20 : 0xffffff7f80cee4c5
    0xffffff807ed4be60 : 0xffffff7f80cee628
    0xffffff807ed4be90 : 0xffffff7f80cf1fd7
    0xffffff807ed4bef0 : 0xffffff800063d4d6
    0xffffff807ed4bf30 : 0xffffff800063c250
    0xffffff807ed4bf70 : 0xffffff800063c0f4
    0xffffff807ed4bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cdf000->0xffffff7f80d17fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
             com.apple.driver.AppleIntelFramebufferCapri(7.3.2)[5D02E509-F60D-3312-9C3C-AF47 D6622C85]@0xffffff7f817b2000->0xffffff7f8180ffff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[19BAB11C-CE5E-3068-AD10-132019C59D6C]@0xfffff f7f807d4000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cdf000
             com.apple.driver.AppleIntelHD4000Graphics(7.3.2)[AD64F3E5-2838-3046-A9EA-1CB6C9 769436]@0xffffff7f81732000->0xffffff7f81798fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80889000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[7C8672C4-8B0D-3CCF-A79A-23C62E90F895]@0xff ffff7f80d18000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[D0A1F6BD-E66E-3DD8-9913-A3AB8746F422]@0 xffffff7f80cdf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 15787869938998
    last loaded kext at 79222085916: com.apple.filesystems.smbfs    1.7.2 (addr 0xffffff7f807f7000, size 241664)
    last unloaded kext at 253257372652: com.apple.driver.AppleWWANSupport    2.5.4 (addr 0xffffff7f80c1a000, size 12288)
    loaded kexts:
    com.Symantec.kext.SAVAPComm    12.1
    com.apple.filesystems.smbfs    1.7.2
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AGPM    100.12.75
    com.apple.driver.X86PlatformShim    5.0.0d8
    com.apple.driver.AppleHDA    2.2.5a5
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMikeyDriver    2.2.5a5
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AppleIntelHD4000Graphics    7.3.2
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d8
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.8f17
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.3
    com.apple.driver.ApplePolicyControl    3.1.33
    com.apple.driver.AppleLPC    1.6.0
    com.apple.driver.AppleBacklight    170.2.2
    com.apple.driver.AppleMCCSControl    1.0.33
    com.apple.driver.AppleIntelFramebufferCapri    7.3.2
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleUSBTCButtons    227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard    227.6
    com.apple.driver.AppleIRController    312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.1.0
    com.apple.driver.AppleSDXC    1.2.2
    com.apple.iokit.AppleBCM5701Ethernet    3.2.4b8
    com.apple.driver.AppleUSBHub    5.1.0
    com.apple.driver.AppleFWOHCI    4.9.0
    com.apple.driver.AirPort.Brcm4331    561.7.22
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.1
    com.apple.driver.AppleUSBEHCI    5.1.0
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleUSBXHCI    1.1.0
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    195.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.4
    com.apple.security.TMSafetyNet    8
    com.apple.driver.AppleIntelCPUPowerManagement    195.0.0
    com.apple.driver.DspFuncLib    2.2.5a5
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.5
    com.apple.driver.AppleHDAController    2.2.5a5
    com.apple.iokit.IOHDAFamily    2.2.5a5
    com.apple.iokit.IOAudioFamily    1.8.6fc18
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.X86PlatformPlugin    5.1.1d6
    com.apple.driver.AppleSMC    3.1.3d10
    com.apple.driver.IOPlatformPluginFamily    5.1.1d6
    com.apple.driver.AppleGraphicsControl    3.1.33
    com.apple.driver.AppleBacklightExpert    1.0.4
    com.apple.iokit.IONDRVSupport    2.3.4
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOGraphicsFamily    2.3.4
    com.apple.kext.triggers    1.0
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.8f17
    com.apple.iokit.IOBluetoothFamily    4.0.8f17
    com.apple.driver.AppleUSBMultitouch    230.5
    com.apple.driver.AppleThunderboltDPInAdapter    1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.2.5
    com.apple.iokit.IOUSBHIDDriver    5.0.0
    com.apple.driver.AppleUSBMergeNub    5.1.0
    com.apple.driver.AppleUSBComposite    5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.1
    com.apple.driver.AppleThunderboltNHI    1.6.0
    com.apple.iokit.IOThunderboltFamily    2.0.3
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IOUSBUserClient    5.0.0
    com.apple.iokit.IOFireWireFamily    4.4.8
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    5.1.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.8
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    331.7
    com.apple.iokit.IOStorageFamily    1.7.2
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.7
    com.apple.iokit.IOACPIFamily    1.4
    System Profile:
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f38
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 8
    USB Device: composite_device, 0x413c  (Dell Inc.), 0x3010, 0x14100000 / 6
    USB Device: Dell USB Keyboard, 0x413c  (Dell Inc.), 0x2003, 0x14200000 / 5

    Since Norton modifies OS X your Mac is unable to function as designed.
    Kernel panics are caused by defective hardware or software. Norton is in the latter category.

  • JDBC connectivity taking lots of time in throwing exception

    Hi ,
    We are doing JDBC connectivity in java program and its working fine, but
    if the connectivity with the orale server goes down it give exception after a
    long time and somtimes behave abnormally.
    Please help.

    Hi,
    if you are using the OracleDataSource and thin driver to connecto to an oracle database try to set the following property through the setConnectionProperties API
    oracle.jdbc.ReadTimeout
    the value is the numer of milliseconds the socket wait for reads for data from the database server.
    The optimal value is application related so try with different values.
    ciao,
    Giovanni

  • Io exception: Connection reset - after some time interval

    Hi,
    We are facing a problem in connection while implementing connection pooling using OracleDataSource .
    Application is running with out any issue if it is called continuously.
    If we call the application after some time interval, connection is being reset. We are able to get the connection instance but connection reset exception is thrown while calling callableStatement.execute().
    If application called after application restart it is working fine.This issue is happening only for the first few calls made after some time interval.(after 1 hr)
    After that call is proceeding without any issue.
    Environment Details
    Application is accessing 4 oracle databases and the versions are viz., 9.2.0.8,10.2.0.3,10.2.0.4 and 9.2.0.1.
    Driver : ojdbc14.jar
    App Server : tomcat
    jdk version: 1.5
    OracleDataSource is being used for connection pooling.
    propCache.setProperty("ConnectionWaitTimeout",10); // caching parms
    ods.setConnectionCachingEnabled(true);
    ods.setLoginTimeout(intLoginTimeout);
    propCache.setProperty("MinLimit","5");
    propCache.setProperty("MaxLimit", "20");
    propCache.setProperty("InitialLimit","5");
    propCache.setProperty("ValidateConnection", "true");
    propCache.setProperty("AbandonedConnectionTimeout", "10");
    The exception details are as follows
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:987)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1170)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:4043)
    at oracle.jdbc.driver.OraclePreparedStatement.doScrollPstmtExecuteUpdate(OraclePreparedStatement.java:10826)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3337)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3445)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4394)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:834)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
    Any suggestion to resolve this issue is greatly appreciated.
    Thanks.

    Hi,
    try to utilize OracleDataSource#setConnectionCacheProperties() with property InactivityTimeout equals to 1800 (30 minutes in seconds).

  • Bluetooth connection lost after wakeup ( CSR - bc4 )

    hi
    after wakeup, my aluminium keyboard cannot connect anymore to my macbook pro. when i go to systempreferences/bluetooth i can see the bluetooth's host name is CSR - bc4 (???). when i turn bluetooth off and on again the hostname does set correctly to the name of my macbook-pro. after the restart of the bluetooth-service my keyboard works like a charm.
    any suggestions?
    greetings from switzerland

    I am having the same problem.
    If I use the new aluminium wireless keyboard (with my existing wireless mighty mouse) neither the mouse nor the keyboard reconnect to the computer on waking from sleep - it does announce that I have lost the bluetooth connection but tapping/clicking/waiting doesn't facilitate reconnection.
    If I send the iMac to sleep again (using the power button - the only way I have to get any signal to my machine at this point - I haven't tried Morse Code yet) it does then recognise the peripherals on waking the second time.
    I have also noticed that if I turn the mouse and keyboard off causing the "connection lost" warning and then put the machine to sleep, everything does reconnect on waking (switching them back on of course).
    I have it set not to wake from sleep using bluetooth devices, so that I can tidy my mouse/keyboard away without disturbing the mac. Using my old white wireless keyboard (but the same Mighty Mouse) it works beautifully again as it always did in Tiger with only a minimal delay on waking from sleep before reconnecting automatically.
    The aluminium keyboard is beautiful. But we need a fix - anyone? Is it a hardware problem? A set of dud keyboards? Has anyone found that a different aluminium wireless keyboard does work with the same setup? Or that their troublemaking keyboard does work on other machines?
    S
    Message was edited by: Beluga2

  • Connection lost after 2 songs have been played.

    Everytime I play songs from my macbook to ATV2 it plays only 2 - 3 songs then it hangs. I just got 4 songs out of it. I have to disconnect my home share and re connect to start it again. Any ideas why this would be happening. I've browsed the forum to see that other people have this issue, but there is no answer as to what is causing it. Surely its not the router as I have a new router. ATV2 streams movies without any interruption so I dont get why it happens to songs through itunes.

    netsurferdude2 wrote:
    Hi all,
    Lets start off with some info. I have a XP machine with a WRT310N router but the connection to the router from my computer is wired. I have other computers on the network(a wired XP work comp and a wireless vista laptop). I do have linksys Easylink Adviser but it is was to laggy and doesnt work half the time so I dont use it. My antivirus software is Panda Internet Security 2008.
    My problem has only occurred twice but it has prevented me from trying to make a server again. I have been wanting to host a dedicated counter strike source server in steam for awhile.
    I followed all the port forwarding directions. I get the static ip set up and I open the 27015 port for steam.
    I will make a dedicated server and have a few people join and then I follow. Everything works perfectly for about 5 minutes and then my friends are dropped from the server due to loss of connection. I am still in the server but no one can join or even get info on it meaning the server is not responding.
    I then close out of steam and the server and find I have lost my internet connection. I can not visit any websites, I can not do anything in steam, I cant log onto aim, xfire or anything.
    Now my local connections dont say "Connection lost" like they do when the router is shut off or if I lose the actual connection.
    The only way it seems I can get my connection back is by unplugging the router, waiting 20s and plugging it back in. Then I have to wait about 5 more mins and it will just all of a sudden work.
    Does anyone have an idea of what is happening? Is it the router? My antivirus/firewall?
    Thanks in advance
    Greg
    Message Edited by netsurferdude2 on 08-25-2008 09:26 PM
    Hi
    Try disabling the firewalls and access server side.
    see if any change?
    pe@c3
    "What u Give , is wht u better start expecting to take back".. - http://Forsakenbliss.wordpress.com

  • Authorization error in Repository after idle time

    Hi all,
    I have a problem in ESR where after some idle time I suddenly loose all my authorizations to perform any actions in Repository (sometimes also Directory). I'm even denied the authorization to close objects or the entire ESR altogether.
    This happens after I have worked on an object, then leave it for some time (I have yet to find out the exact time). Then when I try to continue working on the object, a window pops up saying "User has no authorization".
    Note that I have all necessary roles, and I can perform all the actions when I force-shut the ESR (by killing the ESR-process on OS-level) and log on again. However the objects are locked and I need to remove the lock from the Integration Builder Administration page in order to change the object. This is very annoying!
    I have checked the Default Trace when this happens and found that the userID with which I am logged on has for some reason changed to J2EE_GUEST! I am guessing this is the reason I am not allowed to work on the object anymore, as J2EE_GUEST does not have the appropriate authorizations.
    The Default Trace shows the following (my real user ID is in this system ERIKEN):
    System exception 
    [EXCEPTION]
    javax.ejb.EJBAccessException: Principal: Message buffer:
    No messages available.
    Transient data:
    com.sap.security.core.persistence.imp.PrincipalDatabag Thu Feb 23 16:34:09 CET 2012
    UniqueID: USER.R3_DATASOURCE.J2EE_GUEST
    Type: USER
    Home data source: R3_DATASOURCE
    Private id part: J2EE_GUEST
    Existence not checked.
    "com.sap.security.core.usermanagement"|->"j_authscheme" (no time limit)="anonymous"
    Persistent data:
    com.sap.security.core.persistence.imp.PrincipalDatabag Thu Feb 23 16:34:09 CET 2012
    UniqueID: USER.R3_DATASOURCE.J2EE_GUEST
    Type: USER
    Home data source: R3_DATASOURCE
    Private id part: J2EE_GUEST
    Principal exists.
    Direct parents:
    GRUP: GRUP.R3_ROLE_DS.SAP_J2EE_GUEST
          GRUP.SUPER_GROUPS_DATASOURCE.EVERYONE
          GRUP.SUPER_GROUPS_DATASOURCE.Anonymous Users
    ROLE:
    Why does this happen?
    More importantly, how can I fix it?
    This happens in different systems, on different releases, but this particular system is PI 7.11 - SP08. Java version is 1.6.0_29.
    Appreciate any hints!
    Regards,
    Kenneth

    Dear Kenneth
    Solution in this note: 1622692 - PI ESR: No authorization for this action
    Please check
    Regards
    Sourabh

  • Wireless connection lost after macbook pro sleeps for more than 15 minutes

    It's annoying. I have a brand new macbookpro 3.06Ghz 17" hi-res screen running OS-X 10.6.3 and the wireless connection keeps dropping after the computer is either turned off or sleeping for more than 15 minutes.
    My router is a linksys wireless G, has dd-wrt software in it which is very powerful. When I release or renew the DHCP at the router, the mackbook connects to the wireless network, no problem.
    What configuration can be done at the macbook as to not have it time-out airport wireless connections unless I renew/release DHCP at the router? This is an annoyance beyond the limits of anyone's patience.... Thanks in advance for any help!

    Well, since nobody answered this post I decided to try a bunch of things and I believe I came to a solution:
    1 - Make airport the first connection under System Preferences->Network
    2 - In the advanced window:
    - Under AirPort: Keep only one network name on the list (the one you use all the time)
    - Select 'remember networks this computer has joined' and deselect all other boxes
    - Take note of the Airport ID (xx:xx:xx:xx:xx) and put it in your router's MAC address list. I do this because I only allow connections to my router from mac IDs that are on the list I create. In my case, I have my macbook pro and my PS3 system. If you don't know how to edit the MAC list in your router, do some research. It's pretty easy.
    - Under TCP/IP: Select "Using DHCP" on the IPv4 drop box
    - Select "Off" for IPV6 drop box
    - Under DNS, after you connect at least once, you should see (grayed out) your router's IP address on the left box and the domain on the right side box.
    Finally, under "Ethernet" you should see your Mac address there, the configure option should be set to Automatically and MTU as standard (1500).
    Press OK and then press "Apply" and lock that screen by clicking on the padlock at the bottom left. BTW on the top of this screen Location should be "Automatic" - if not, select it and apply.
    Done! Your wireless should connect quickly after the computer is turned on or waken up from sleep state. This assumes you configured your router correctly (mac addresses, frequencies, etc).
    Good Luck to all who try this - at least I have not have any more dropped wireless connections.
    Message was edited by: KEForex
    Message was edited by: KEForex

Maybe you are looking for