JMXConnectorFactory.connect Hangs periodically

Whenever trying to establish a JMX connection to a remote managed device there appears to be a hang when invoking the JMXConnectorFactory.connect. This behavior is exhibited operatically but there have been several successful connections to the same remote device prior to the hung attempt. We are using the optional protocol for JMX which is JMXMP so additional dependencies on the jmxremote.jar and jmxremote_optional.jar. I know there are some timeout properties that can be set as apart of the environment map that is passed into the connect but it seems to have no impact on the hang. From researching there have been several enhancements to both of these jars and we are currently on the 1.0 version. Would upgrading to the 2.0 version potentially solve this issue? Would the timeout property be recognized? Switching from 1.0 to 2.0 is a non-passive change as well which could complicate things.
Configuration:
JRE: 1.5.0_15
JMX Protocol: JMXMP
SSL Enabled
Thanks for any help in advance.

hi alan_mehio
Thank you for the reply
ApplicationContext context = new ClassPathXmlApplicationContext(
new String[] {"classpath:context.xml"});  The above line throws aqn error "cannot convert ClassPathXmlApplicationContext to ApplicationContext
so i have the changed the code to
{code}
     ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
                    new String[] {"classpath:context.xml"}); {code}
After changing to this i got an error that org.springframework.beans.BeansException is indirectly referenced
I solved the issue by downloading & adding the spring-beans.jar to the classpath.
FYI
But the above line is also throwing an exception
java.lang.NoClassDefFoundError: org/springframework/context/support/ClassPathXmlApplicationContext
Even though the jar files are in the build path. Please tell how to overcome this
Thanks in advance
K Sathya Narayanan.

Similar Messages

  • Connection hange while trying to connect via ssh.

    Hi all,
    I have this problem and i fixed it, just wanted to understand the logic behiend it.
    I tried to login to a machine via ssh.
    After providing the username and password, the connection hang until you press CTRL -C.
    I checked DNS configuration, and some other stuff.
    The problem was a NFS entry in the vfstab that was unreachable.
    When i removed it, the connection went smoothlly.
    My question is, why that entry caused that problem ?
    Thanks!

    At login, the shell runs 'quota -v' to display any over-quota conditions that might exist.
    If the NFS mount was not mounted with "noquta", then it will send an RPC request to the server. If the server is down, that request will take 60 seconds to time out. If you have multiple mounts to the server, they might run sequentially.
    The login should complete after a minute or so, but most users won't wait that long.
    Darren

  • Connection hanging with java

    Hello
    we apply some simple Connection pool mechanism from our java code to Oracle
    8.1.6. Due to some reason, oracle connections get hanging after a while. So
    far I have not found out why :-(. The result is that whatever command they
    are running at that moment gets blocked. This may be something so simple as
    Connection.createStatement(). Result: my thread is blocked, the program is
    blocked. Parts of it I solved by doing a test before delivering a connection
    in a separate thread that gets a timeout. Not really elegant :-(. First,
    when the connection gets corrupted in the code that uses it, I have no
    access. And secondly, when the thread gets timed out, and the pool creates a
    new connection, I still have this connection hanging ...
    So, I hope that someone has some useful tips how should handle hanging
    connections, and properly clean them. Meanwhile I will try to find the
    reason of the hanging as well (maybe v$session or v$open_cursor has a clue).
    Regards

    You're right.
    The Norton personal firewall does not handle localhost to localhost correctly. I do all the tests on the same machine. The netstat -an shows the port is listening in either case. But now I know the firewall blocks one of them silently. No rule prompt was triggered. Worse, no logging produced for that particular access.
    Thanks. You've been very helpful.

  • [SOLVED] SSH, email - connection 'hangs'

    Hello,
    I have a problem with connections at work - it happens only at work, I tried on Arch and also Debian.
    I haven't noticed it to affect 'web browsing' - it affects for sure ssh (incl. git) and sending email mesages.
    What happens:
    About 3/4 of times I try to send an email (google account from thunderbird), or log in to one of our servers with ssh (or pull/push some code from/to github) the connection 'hangs' and nothing happens. If I try ^C and 'redo' few times I finally manage to log in.
    Log from ssh (unsuccessfull connection):
    ssh bb5 -vvvv
    OpenSSH_5.9p1, OpenSSL 1.0.0g 18 Jan 2012
    debug1: Reading configuration data /home/kaczor/.ssh/config
    debug1: /home/kaczor/.ssh/config line 18: Applying options for bb5
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug2: ssh_connect: needpriv 0
    debug1: Connecting to XXX.XXX.XXX.XXX [XXX.XXX.XXX.XXX] port 22.
    debug1: Connection established.
    debug3: Incorrect RSA1 identifier
    debug3: Could not load "/home/kaczor/.ssh/id_rsa" as a RSA1 public key
    debug1: identity file /home/kaczor/.ssh/id_rsa type 1
    debug1: identity file /home/kaczor/.ssh/id_rsa-cert type -1
    debug1: identity file /home/kaczor/.ssh/id_dsa type -1
    debug1: identity file /home/kaczor/.ssh/id_dsa-cert type -1
    debug1: identity file /home/kaczor/.ssh/id_ecdsa type -1
    debug1: identity file /home/kaczor/.ssh/id_ecdsa-cert type -1
    [-- and I can wait for ages on this --]
    If the login is successfull the next lines are:
    debug1: Remote protocol version 2.0, remote software version OpenSSH_5.5p1 Debian-6+squeeze1
    debug1: match: OpenSSH_5.5p1 Debian-6+squeeze1 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_5.9
    debug2: fd 3 setting O_NONBLOCK
    My /etc/ssh/ssh_config on Arch is default (everything commented out)
    ~/.ssh/config has only few Host, User, entries
    On Debian:
    /etc/ssh/ssh_config
    Host *
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no
    Trying to ssh to server's IP doesn't change anything.
    Any ideas how could I track where lies the problem? Or maybe I could at least make it 'retry' automatically?
    Edit:
    After setting timeout in ssh_config I get
    Connection timed out during banner exchange
    at the end of unsuccessfull connection.
    Last edited by kaczor1984 (2012-04-24 15:15:17)

    firecat53 wrote:
    Try downgrading openssl and openssh to the previous versions. I had issues similiar (but not exactly) to this. I think try openssl-1.0.0.h and openssh-5.9p1-5
    Scott
    On Debian the openssl is 0.9.8g-15 and openssh is 5.1p1-5
    Gcool wrote:Try connecting with the "-o ConnectTimeout=60" parameter....
    I've set it already in ssh_config file (see my edit). Is there any way to make ssh 'retry' few times because now it gives up after first failure.
    I've set   ConnectionAttempts 5 but i'm not sure if it works - I'll have to give it another try on tuesday.
    mr.MikyMaus wrote:Can it be that your employer does not like encrypted traffic in his network? I could imagine an IPS system trying to decipher the connection... Try moving the server-side ssl service to a non-standard port if you can...
    It is possible - however I don't know exactly how is the network 'distributed'. Maybe I'll try to change it at least at one server and give it a try.
    Anyway - what about emails for example - this uses port 25 (smtp on gmail) and is experiencing the same problems (message sending lasts until timeout 8 out of 10 times).
    I don't know too much about networks - maybe there is some kind of service which doesn't work properly in my network at the office. Any clues what could it be?
    Most important for me is to make 'git pull' work - because it's executed automatically on those Debian boxes and if it fails they are not updated.
    So solution like 'make it retry 10 times per 5 seconds' will do the job for 90% cases I think.

  • WRV200 - Wireless Connection Is Periodically Lost

    Hello,
    I just bought a WRV200 and I have updated the firmware to 1.0.32.2.
    I'm using WPA2-Personal.
    I have to Toshiba notebooks with the Intel(R) PRO/Wireless 3945ABG.
    I'm using in both computers Windows Vista (Home Premium and Ultimate editions).
    The problem that I have is I get the connection lost periodically. Not always at the same amount of time.
    I have tried 2 different Linksys WRV200 routers and I always have the same problem. I must add that one router have the 1.0.32.2 and the other 1.0.12 firmware.
    Any ideas why? Is the ok? Is about the key renewal?
    Thanks in advance for your replays!

    A couple of suggestions:
    1. Firmware 1.0.32.2 is not the latest firmware - you could find newer beta firmware at linksysinfo.org at the download section.
    2. It would help if you spend the time to update the wireless driver on the computers. Check with the Intel's web site for the latest version. 
    http://support.intel.com/support/wireless/wlan/pro3945abg/index.htm
    Message Edited by VPN_user on 08-21-2007 08:37 PM

  • IPhone connections hangs when sending email after upgrade.

    After upgrading to 2.0 firmware on my first generation IPhone, the phone now regulary hangs when sending email via smtp. Even if I try to close the connection by putting it into AirPlane mode and back again it still hangs and from that point onwards doesn't check or send any new emails. If I then shut the phone down and restart it looses the email as it's not either in the sent or outbox folders. This has happened quite a few times since upgrading. Does anybody have any advice?

    Found this useful tidbit by mdwelsh231 on another thread:
    "I'm having this problem too. Rather than rebooting the phone, an even easier solution is to hold down the Home button for several seconds (I believe it's 8 sec) which will kill the Mail application and return you to the home screen. Restarting Mail (by tapping the Mail icon) will cause it to reconnect. I find that this resolves the connection hanging issue. However, it is still kind of a pain. I suspect a bug in the 2.0 iPhone firmware. "
    Worked for me
    Cheers,
    C

  • HT201415 My wi if connection Hangs at random and the iPad then needs to be restarted for it to reconnect!

    My wi if connection Hangs at random and the iPad then needs to be restarted for it to reconnect!
    Has anyone had a problem like this or know a solution.?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Connection Hangs

    Hi All,
    Platform : Oracle - 10.1.0.4.0
    OS - HP-UX B11.23
    PeopleSoft -8.11 P1
    From the People Soft logs we get an error;
    12241/1 WRK:Init Remote Env Token  
    OCI0000141 - Error - ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    The connection hangs and we need to re-start the application to get back to normal.
    But this error (0RA-27101) is not reported in database Alert Logs. The oracle is available when we access through sql*plus

    Hi,
    To resolve this issue with ORA-27101, you should be sure that ORACLE_HOME and ORACLE_SID are correct, and ORACLE_HOME should not have trailing slash.
    The error will appear on the client side and not in the alert log.
    Thanks
    Soundappan

  • JCO connections hanged in SMGW transaction at SAP

    Hi ,
    I have deployed an ear application in SAP WAS 7.0 which basically talks to my SAP backend using JCO 2.1 connectors. The application will fetch the data from SAP backend calling FM using JCO 2.1.
    I m using JCO pool manager and set to default 100 connections and taken care of release connections after every RFC call in finally block. The connections released successfully in  Dev and QA landscapes. In prod environment of customer, we are facing connections hang issues when it reaches to peak state of 100. It is due to max conversations reached at SAP backend, but the connections should eventually drop in SMGW which is not happening. There are some lost connections got hanged and remains for days and even they are not re-used. When i run method to release the pool, all connections are focibly returned back to pool, but lost connections still remain there.
    Can somebody has similar situation ?
    if connections reached to max in SMGW, will the connections from external client applications will get hanged ?
    Does the JCO have control on the hanged connections if it reaches to max number?
    Any help is appreciated!!!
    Regards,
    Ravi.

    The relevant SAP note here is [549268|https://service.sap.com/sap/support/notes/549268].
    But in this context there is big difference between the terms "not supported" and "does not work".
    When SAP speaks of "not supported" this means that there won't be any SAP support for this configuration but this does not say anything about if this works technically. "Not supported" is more a legal issue than a technical one. SAP did not test this configuration and therefore also cannot guarantee to work.
    Regarding JCo 2.1 I can say that technically it works with all Windows 32- and 64-bit versions. In contrast to that it really does not work with JRE releases >= 1.5 when using BCD types (type P) within your function modules.
    From my point of view the connection issues don't have anything to do with the Windows version here.
    And it is still not clear to me, if the maximum number of CPIC connections is reached at the AS ABAP/gateway side or the Java side. Furthermore it is not clear if these "hanging connections" were opened with your application at all or if they belong to another application.

  • Jdbc connection hang?

    I used thin JDBC driver 9.0.1 comes with oracle 9i.
    However, the connection hang in heavy load.
    1. I try to check isClosed(), then reopen is more stable but problem is still exist.
    2. It's more stable than 1. when do.. getConnection, do job and Close it. But another application connect more difficult get some error like 'not found oracle realm' or something.
    Anybody has comment?
    Thanks,
    Kittikun Potivanakul
    [email protected]

    Hi to all and sorry for the delay of my reply.
    I am not using RAC. After setting of the system property +"-Djava.security.egd=file:///dev/random"+ it has solved the +"Connection reset"+ problem, but after about one hour I get +"Connection closed"+ from each connection of the pool when the application uses it.
    The pool uses the implicit cache mechanism of Oracle. Follow the properties of cache:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
    <properties>
    <comment> Oracle connection pool configuration file. </comment>
    <!-- Sets how many connections are created in the cache when it is created or reinitialized -->
    <entry key="InitialLimit">0</entry>
    <!-- Sets the minimum number of connections the cache maintains. -->
    <entry key="MinLimit">0</entry>
    <!-- Sets the maximum number of connection instances the cache can hold. If missing no limit-->
    <entry key="MaxLimit">10</entry>
    <!-- Sets the maximum time a physical connection can remain idle in a connection cache.
    An idle connection is one that is not active and does not have a logical handle associated with it. -->
    <entry key="InactivityTimeout">240</entry>
    <!-- Sets the maximum time that a connection can remain unused before the connection is closed and returned to the cache.
         A connection is considered unused if it has not had SQL database activity. -->
    <entry key="AbandonedConnectionTimeout">240</entry>
    <!-- If no connection is returned to the cache before the timeout elapses, then the connection request returns null. -->
    <entry key="ConnectionWaitTimeout">5</entry>
    <!-- If true causes the connection cache to test every connection it retrieves against the underlying database. If a valid connection cannot be retrieved, then an exception is thrown. -->
    <entry key="ValidateConnection">true</entry>
    </properties>
    Edited by: user12098943 on Aug 24, 2011 10:31 AM

  • Hi! I bought my notebook in october last year but from last month oftenly my WiFi connection hangs up nd stops catching any available Wifi connection? please suggest the solution

    Hi! I bought my Macbook Pro 13" in october last year but from last month oftenly my WiFi connection hangs up nd stops catching any available Wifi connection?
    At last I restart the modem and dn it catches the signal but that too is short lived.
    please suggest some solutions
    Thanking U,

    I have this problem on my home network but at the same time when my connection hangs up my other wifi machine remians connected. So i think there's no problem with the modem.

  • 30EA2 - connection hangs on initial connect.

    I encountered this intermittently with 30EA1 as well. When I click on a connection to connect, I get a 'loading...' icon and the running progress bar is flashing away merrily, but the connection never opens. That is no object browser and no worksheet.
    Looking at the database, there is a session open. The GUI is still responsive.
    Nothing appears in the console.
    Windows Vista SP2, JDK 6_11.
    Here is a thread dump
    2010-12-07 11:25:16
    Full thread dump Java HotSpot(TM) Client VM (11.0-b16 mixed mode):
    "Open Connection" prio=6 tid=0x36564000 nid=0x1478 waiting on condition [0x381ef000..0x381efd68]
    java.lang.Thread.State: WAITING (parking)
    at sun.misc.Unsafe.park(Native Method)
    - parking to wait for <0x08fecda0> (a java.util.concurrent.FutureTask$Sync)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:747)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(AbstractQueuedSynchronizer.java:905)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1217)
    at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:218)
    at java.util.concurrent.FutureTask.get(FutureTask.java:83)
    at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$IdeTaskTracker.run(RaptorTaskManager.java:540)
    at java.lang.Thread.run(Thread.java:619)
    "IconOverlayTracker Timer" prio=6 tid=0x36565400 nid=0x1628 in Object.wait() [0x397cf000..0x397cfbe8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x08f5dfe0> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:485)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x08f5dfe0> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "Timer queue for AWT thread" daemon prio=6 tid=0x36564800 nid=0x16a4 in Object.wait() [0x395cf000..0x395cf9e8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x08a089f8> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:485)
    at ice.util.awt.TimedAWTExecutor.nextElem(TimedAWTExecutor.java:108)
    - locked <0x08a089f8> (a java.lang.Object)
    at ice.util.awt.TimedAWTExecutor.runScheduler(TimedAWTExecutor.java:130)
    at ice.util.awt.TimedAWTExecutor$1.run(TimedAWTExecutor.java:19)
    "Timer queue for AWT thread" daemon prio=6 tid=0x36562c00 nid=0x13a8 in Object.wait() [0x38e4f000..0x38e4fae8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x08a08aa0> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:485)
    at ice.util.awt.TimedAWTExecutor.nextElem(TimedAWTExecutor.java:108)
    - locked <0x08a08aa0> (a java.lang.Object)
    at ice.util.awt.TimedAWTExecutor.runScheduler(TimedAWTExecutor.java:130)
    at ice.util.awt.TimedAWTExecutor$1.run(TimedAWTExecutor.java:19)
    "WaitCursor-Timer" prio=6 tid=0x36563c00 nid=0x6f4 in Object.wait() [0x393cf000..0x393cfb68]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x084fe620> (a java.util.TaskQueue)
    at java.lang.Object.wait(Object.java:485)
    at java.util.TimerThread.mainLoop(Timer.java:483)
    - locked <0x084fe620> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "BaseTreeExplorer.NodeOpeningExecutor" prio=6 tid=0x36562400 nid=0x1430 waiting on condition [0x38b4f000..0x38b4fc68]
    java.lang.Thread.State: WAITING (parking)
    at sun.misc.Unsafe.park(Native Method)
    - parking to wait for <0x0819add0> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
    at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
    at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
    at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
    at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
    at java.lang.Thread.run(Thread.java:619)
    "pool-2-thread-1" prio=6 tid=0x36562000 nid=0x1768 in Object.wait() [0x38a4f000..0x38a4fce8]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    at java.io.PipedInputStream.awaitSpace(PipedInputStream.java:257)
    at java.io.PipedInputStream.receive(PipedInputStream.java:215)
    - locked <0x09023a00> (a java.io.PipedInputStream)
    at java.io.PipedOutputStream.write(PipedOutputStream.java:132)
    at java.io.BufferedOutputStream.write(BufferedOutputStream.java:105)
    - locked <0x09023ab8> (a java.io.BufferedOutputStream)
    at java.io.FilterOutputStream.write(FilterOutputStream.java:80)
    at oracle.dbtools.raptor.newscriptrunner.WrapListenBufferOutputStream.write(WrapListenBufferOutputStream.java:149)
    at oracle.dbtools.db.ResultSetFormatter.rset2sqlplus(ResultSetFormatter.java:117)
    at oracle.dbtools.raptor.newscriptrunner.SQL.executeQuery(SQL.java:271)
    at oracle.dbtools.raptor.newscriptrunner.SQL.run(SQL.java:45)
    at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.runSQL(ScriptRunner.java:187)
    at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.run(ScriptRunner.java:127)
    at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:215)
    at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:145)
    at oracle.dbtools.raptor.scriptrunner.utils.ScriptUtils.runAsScript(ScriptUtils.java:114)
    at oracle.dbtools.raptor.scriptrunner.utils.ScriptUtils.runAsScript(ScriptUtils.java:71)
    at oracle.dbtools.raptor.InitializeConnectionListener.runLoginSql(InitializeConnectionListener.java:171)
    at oracle.dbtools.raptor.InitializeConnectionListener.initConnection(InitializeConnectionListener.java:127)
    at oracle.dbtools.raptor.InitializeConnectionListener$1.initializeConnection(InitializeConnectionListener.java:47)
    at oracle.dbtools.raptor.utils.Connections.initializeConnection(Connections.java:1493)
    at oracle.dbtools.raptor.utils.Connections.access$100(Connections.java:66)
    at oracle.dbtools.raptor.utils.Connections$ConnectionInfo.getDatabase(Connections.java:181)
    - locked <0x081d6868> (a oracle.dbtools.raptor.utils.Connections$ConnectionInfo)
    at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:899)
    at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:880)
    at oracle.dbtools.raptor.navigator.DatabaseConnection.openConnectionImpl(DatabaseConnection.java:117)
    at oracle.dbtools.raptor.navigator.AbstractConnectionNode.getConnection(AbstractConnectionNode.java:30)
    - locked <0x081d6ab8> (a java.lang.Object)
    at oracle.dbtools.raptor.navigator.ConnectionFilter.getFactory(ConnectionFilter.java:94)
    at oracle.dbtools.raptor.navigator.ConnectionFilter$1.doWork(ConnectionFilter.java:119)
    at oracle.dbtools.raptor.navigator.ConnectionFilter$1.doWork(ConnectionFilter.java:104)
    at oracle.dbtools.raptor.backgroundTask.RaptorTask.call(RaptorTask.java:193)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$RaptorFutureTask.run(RaptorTaskManager.java:500)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
    at java.util.concurrent.FutureTask.run(FutureTask.java:138)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:619)
    "Scheduler" daemon prio=6 tid=0x36561800 nid=0x149c in Object.wait() [0x3894f000..0x3894fd68]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x0819b130> (a oracle.dbtools.raptor.backgroundTask.TaskLinkedList)
    at java.lang.Object.wait(Object.java:485)
    at oracle.dbtools.raptor.backgroundTask.TaskLinkedList.takeNextTask(TaskLinkedList.java:47)
    - locked <0x0819b130> (a oracle.dbtools.raptor.backgroundTask.TaskLinkedList)
    at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$SchedulerThread.run(RaptorTaskManager.java:429)
    "Thread-6" daemon prio=6 tid=0x36561400 nid=0x1530 in Object.wait() [0x3884f000..0x3884f9e8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x080faa48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x080faa48> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at org.tmatesoft.svn.core.javahl.SVNClientImplTracker.run(SVNClientImplTracker.java:65)
    at java.lang.Thread.run(Thread.java:619)
    "ChangeSetService" prio=2 tid=0x36560800 nid=0x17ec in Object.wait() [0x384df000..0x384dfae8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x07eccb18> (a oracle.jdevimpl.vcs.changeset.ChangeSetService)
    at java.lang.Object.wait(Object.java:485)
    at oracle.jdevimpl.vcs.changeset.ChangeSetService.awaitEvents(ChangeSetService.java:178)
    - locked <0x07eccb18> (a oracle.jdevimpl.vcs.changeset.ChangeSetService)
    at oracle.jdevimpl.vcs.changeset.ChangeSetService.eventLoop(ChangeSetService.java:199)
    at oracle.jdevimpl.vcs.changeset.ChangeSetService.access$200(ChangeSetService.java:56)
    at oracle.jdevimpl.vcs.changeset.ChangeSetService$2.run(ChangeSetService.java:138)
    at java.lang.Thread.run(Thread.java:619)
    "TimerQueue" daemon prio=6 tid=0x36560400 nid=0x153c in Object.wait() [0x382ff000..0x382ffb68]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    at javax.swing.TimerQueue.run(TimerQueue.java:236)
    - locked <0x07dd2880> (a javax.swing.TimerQueue)
    at java.lang.Thread.run(Thread.java:619)
    "TimedCache-Timer" daemon prio=6 tid=0x35e2d000 nid=0xbec in Object.wait() [0x363cf000..0x363cfc68]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x076942a8> (a java.util.TaskQueue)
    at java.util.TimerThread.mainLoop(Timer.java:509)
    - locked <0x076942a8> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "JarIndex Timer" daemon prio=6 tid=0x3507c800 nid=0x1538 in Object.wait() [0x362cf000..0x362cfce8]
    java.lang.Thread.State: TIMED_WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    at java.util.TimerThread.mainLoop(Timer.java:509)
    - locked <0x075b8f48> (a java.util.TaskQueue)
    at java.util.TimerThread.run(Timer.java:462)
    "AWT-EventQueue-0" prio=6 tid=0x350be400 nid=0x1300 in Object.wait() [0x35dcf000..0x35dcfd68]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:485)
    at java.awt.EventQueue.getNextEvent(EventQueue.java:479)
    - locked <0x075b8ff8> (a java.awt.EventQueue)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:236)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    "AWT-Windows" daemon prio=6 tid=0x35067800 nid=0xe54 runnable [0x35bcf000..0x35bcfa68]
    java.lang.Thread.State: RUNNABLE
    at sun.awt.windows.WToolkit.eventLoop(Native Method)
    at sun.awt.windows.WToolkit.run(WToolkit.java:291)
    at java.lang.Thread.run(Thread.java:619)
    "AWT-Shutdown" prio=6 tid=0x35067000 nid=0xd3c in Object.wait() [0x35acf000..0x35acfae8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x075b91b8> (a java.lang.Object)
    at java.lang.Object.wait(Object.java:485)
    at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
    - locked <0x075b91b8> (a java.lang.Object)
    at java.lang.Thread.run(Thread.java:619)
    "Java2D Disposer" daemon prio=10 tid=0x35059400 nid=0xd40 in Object.wait() [0x354cf000..0x354cfb68]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x075b9248> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x075b9248> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at sun.java2d.Disposer.run(Disposer.java:125)
    at java.lang.Thread.run(Thread.java:619)
    "Low Memory Detector" daemon prio=6 tid=0x01ce3800 nid=0x173c runnable [0x00000000..0x00000000]
    java.lang.Thread.State: RUNNABLE
    "CompilerThread0" daemon prio=10 tid=0x01cdfc00 nid=0x12ec waiting on condition [0x00000000..0x34cbf990]
    java.lang.Thread.State: RUNNABLE
    "Attach Listener" daemon prio=10 tid=0x01cdcc00 nid=0x14d4 runnable [0x00000000..0x00000000]
    java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=10 tid=0x01cd2000 nid=0x16cc waiting on condition [0x00000000..0x00000000]
    java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=8 tid=0x01cc2400 nid=0x218 in Object.wait() [0x349bf000..0x349bfa68]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x07530298> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
    - locked <0x07530298> (a java.lang.ref.ReferenceQueue$Lock)
    at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
    at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x01cbdc00 nid=0xe14 in Object.wait() [0x348bf000..0x348bfae8]
    java.lang.Thread.State: WAITING (on object monitor)
    at java.lang.Object.wait(Native Method)
    - waiting on <0x07530320> (a java.lang.ref.Reference$Lock)
    at java.lang.Object.wait(Object.java:485)
    at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
    - locked <0x07530320> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x01d4a800 nid=0x10b8 waiting on condition [0x00000000..0x0012fab0]
    java.lang.Thread.State: RUNNABLE
    "VM Thread" prio=10 tid=0x01cba000 nid=0xb14 runnable
    "VM Periodic Task Thread" prio=10 tid=0x01ce4800 nid=0x1758 waiting on condition
    JNI global references: 2241
    Heap
    def new generation total 9216K, used 5730K [0x04400000, 0x04df0000, 0x07530000)
    eden space 8256K, 69% used [0x04400000, 0x04998bf0, 0x04c10000)
    from space 960K, 0% used [0x04c10000, 0x04c10000, 0x04d00000)
    to space 960K, 0% used [0x04d00000, 0x04d00000, 0x04df0000)
    tenured generation total 121024K, used 29754K [0x07530000, 0x0eb60000, 0x2c400000)
    the space 121024K, 24% used [0x07530000, 0x0923ea98, 0x0923ec00, 0x0eb60000)
    compacting perm gen total 58112K, used 57860K [0x2c400000, 0x2fcc0000, 0x34400000)
    the space 58112K, 99% used [0x2c400000, 0x2fc81278, 0x2fc81400, 0x2fcc0000)
    No shared spaces configured.

    I've already reported this one and got no response. Now with EA3 the product is unusable because it hangs EVERY TIME.
    The sequence of events is
    Start SQL Developer
    Open a connectio
    Loading... appears in the connection browser under the connection and the Running: progress bar flashes in the status bar... for ever.
    The gui still responds and I can attempt to open other connections.
    Any attempt to close SQL Developer gets the Connection Busy, retry abort message. I have to kill it from task manager.
    Looking at the database there is a connection, but it is spending all its time waiting on SQL*Net message from client.
    Windows Vista 32-bit.
    CVS Version     Internal to Oracle SQL Developer (client-only)
    Java(TM) Platform     1.6.0_11
    Oracle IDE     3.0.03.45
    Versioning Support     3.0.03.45
    Here is a thread dump
    2011-01-26 10:50:07
    Full thread dump Java HotSpot(TM) Client VM (11.0-b16 mixed mode):
    "Open Connection" prio=6 tid=0x36904400 nid=0xf5c waiting on condition [0x3946f000..0x3946fbe8]
       java.lang.Thread.State: WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x0936ee48> (a java.util.concurrent.FutureTask$Sync)
            at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.parkAndCheckInterrupt(AbstractQueuedSynchronizer.java:747)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly(AbstractQueuedSynchronizer.java:905)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1217)
            at java.util.concurrent.FutureTask$Sync.innerGet(FutureTask.java:218)
            at java.util.concurrent.FutureTask.get(FutureTask.java:83)
            at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$IdeTaskTracker.run(RaptorTaskManager.java:540)
            at java.lang.Thread.run(Thread.java:619)
    "IconOverlayTracker Timer" prio=6 tid=0x36902400 nid=0x1154 in Object.wait() [0x3926f000..0x3926fa68]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x092d3c50> (a java.util.TaskQueue)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x092d3c50> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "Timer queue for AWT thread" daemon prio=6 tid=0x36902000 nid=0x12c0 in Object.wait() [0x3916f000..0x3916fc68]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x08bf5418> (a java.lang.Object)
            at java.lang.Object.wait(Object.java:485)
            at ice.util.awt.TimedAWTExecutor.nextElem(TimedAWTExecutor.java:108)
            - locked <0x08bf5418> (a java.lang.Object)
            at ice.util.awt.TimedAWTExecutor.runScheduler(TimedAWTExecutor.java:130)
            at ice.util.awt.TimedAWTExecutor$1.run(TimedAWTExecutor.java:19)
    "WaitCursor-Timer" prio=6 tid=0x36901400 nid=0xfb8 in Object.wait() [0x38bef000..0x38befce8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x08636580> (a java.util.TaskQueue)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x08636580> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "Timer queue for AWT thread" daemon prio=6 tid=0x36900800 nid=0x95c in Object.wait() [0x389ef000..0x389ef9e8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at ice.util.awt.TimedAWTExecutor.nextElem(TimedAWTExecutor.java:108)
            - locked <0x08510a10> (a java.lang.Object)
            at ice.util.awt.TimedAWTExecutor.runScheduler(TimedAWTExecutor.java:130)
            at ice.util.awt.TimedAWTExecutor$1.run(TimedAWTExecutor.java:19)
    "BaseTreeExplorer.NodeOpeningExecutor" prio=6 tid=0x36900400 nid=0x1538 waiting on condition [0x387ef000..0x387efae8]
       java.lang.Thread.State: WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x080ef420> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
            at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1925)
            at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:358)
            at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:947)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
            at java.lang.Thread.run(Thread.java:619)
    "pool-2-thread-1" prio=6 tid=0x368ffc00 nid=0x1234 in Object.wait() [0x386ef000..0x386efb68]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.io.PipedInputStream.awaitSpace(PipedInputStream.java:257)
            at java.io.PipedInputStream.receive(PipedInputStream.java:215)
            - locked <0x093a7fa0> (a java.io.PipedInputStream)
            at java.io.PipedOutputStream.write(PipedOutputStream.java:132)
            at java.io.BufferedOutputStream.write(BufferedOutputStream.java:105)
            - locked <0x093a8058> (a java.io.BufferedOutputStream)
            at java.io.FilterOutputStream.write(FilterOutputStream.java:80)
            at oracle.dbtools.raptor.newscriptrunner.WrapListenBufferOutputStream.write(WrapListenBufferOutputStream.java:149)
            at oracle.dbtools.db.ResultSetFormatter.rset2sqlplus(ResultSetFormatter.java:117)
            at oracle.dbtools.raptor.newscriptrunner.SQL.executeQuery(SQL.java:274)
            at oracle.dbtools.raptor.newscriptrunner.SQL.run(SQL.java:47)
            at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.runSQL(ScriptRunner.java:187)
            at oracle.dbtools.raptor.newscriptrunner.ScriptRunner.run(ScriptRunner.java:127)
            at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:215)
            at oracle.dbtools.raptor.newscriptrunner.ScriptExecutor.run(ScriptExecutor.java:145)
            at oracle.dbtools.raptor.scriptrunner.utils.ScriptUtils.runAsScript(ScriptUtils.java:114)
            at oracle.dbtools.raptor.scriptrunner.utils.ScriptUtils.runAsScript(ScriptUtils.java:71)
            at oracle.dbtools.raptor.InitializeConnectionListener.runLoginSql(InitializeConnectionListener.java:171)
            at oracle.dbtools.raptor.InitializeConnectionListener.initConnection(InitializeConnectionListener.java:127)
            at oracle.dbtools.raptor.InitializeConnectionListener$1.initializeConnection(InitializeConnectionListener.java:47)
            at oracle.dbtools.raptor.utils.Connections.initializeConnection(Connections.java:1493)
            at oracle.dbtools.raptor.utils.Connections.access$100(Connections.java:66)
            at oracle.dbtools.raptor.utils.Connections$ConnectionInfo.getDatabase(Connections.java:181)
            - locked <0x080e7530> (a oracle.dbtools.raptor.utils.Connections$ConnectionInfo)
            at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:899)
            at oracle.dbtools.raptor.utils.Connections.getConnection(Connections.java:880)
            at oracle.dbtools.raptor.navigator.DatabaseConnection.openConnectionImpl(DatabaseConnection.java:117)
            at oracle.dbtools.raptor.navigator.AbstractConnectionNode.getConnection(AbstractConnectionNode.java:30)
            - locked <0x080ea7b0> (a java.lang.Object)
            at oracle.dbtools.raptor.navigator.ConnectionFilter.getFactory(ConnectionFilter.java:94)
            at oracle.dbtools.raptor.navigator.ConnectionFilter$1.doWork(ConnectionFilter.java:119)
            at oracle.dbtools.raptor.navigator.ConnectionFilter$1.doWork(ConnectionFilter.java:104)
            at oracle.dbtools.raptor.backgroundTask.RaptorTask.call(RaptorTask.java:193)
            at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
            at java.util.concurrent.FutureTask.run(FutureTask.java:138)
            at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$RaptorFutureTask.run(RaptorTaskManager.java:500)
            at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
            at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
            at java.util.concurrent.FutureTask.run(FutureTask.java:138)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
            at java.lang.Thread.run(Thread.java:619)
    "Scheduler" daemon prio=6 tid=0x368ff800 nid=0x147c in Object.wait() [0x385ef000..0x385efbe8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x080ebc30> (a oracle.dbtools.raptor.backgroundTask.TaskLinkedList)
            at java.lang.Object.wait(Object.java:485)
            at oracle.dbtools.raptor.backgroundTask.TaskLinkedList.takeNextTask(TaskLinkedList.java:47)
            - locked <0x080ebc30> (a oracle.dbtools.raptor.backgroundTask.TaskLinkedList)
            at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$SchedulerThread.run(RaptorTaskManager.java:429)
    "ChangeSetService" prio=2 tid=0x368fec00 nid=0x12fc in Object.wait() [0x383ef000..0x383efce8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x07d8aa58> (a oracle.jdevimpl.vcs.changeset.ChangeSetService)
            at java.lang.Object.wait(Object.java:485)
            at oracle.jdevimpl.vcs.changeset.ChangeSetService.awaitEvents(ChangeSetService.java:178)
            - locked <0x07d8aa58> (a oracle.jdevimpl.vcs.changeset.ChangeSetService)
            at oracle.jdevimpl.vcs.changeset.ChangeSetService.eventLoop(ChangeSetService.java:199)
            at oracle.jdevimpl.vcs.changeset.ChangeSetService.access$200(ChangeSetService.java:56)
            at oracle.jdevimpl.vcs.changeset.ChangeSetService$2.run(ChangeSetService.java:138)
            at java.lang.Thread.run(Thread.java:619)
    "TimerQueue" daemon prio=6 tid=0x368fe000 nid=0xf50 in Object.wait() [0x382ef000..0x382efd68]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at javax.swing.TimerQueue.run(TimerQueue.java:236)
            - locked <0x07e9d5f8> (a javax.swing.TimerQueue)
            at java.lang.Thread.run(Thread.java:619)
    "TimedCache-Timer" daemon prio=6 tid=0x35dd3800 nid=0x1134 in Object.wait() [0x3637f000..0x3637fa68]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.util.TimerThread.mainLoop(Timer.java:509)
            - locked <0x07699b40> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "JarIndex Timer" daemon prio=6 tid=0x34f4dc00 nid=0xc90 in Object.wait() [0x3627f000..0x3627fae8]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.util.TimerThread.mainLoop(Timer.java:509)
            - locked <0x075b3e58> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "AWT-EventQueue-0" prio=6 tid=0x34f3cc00 nid=0xc6c in Object.wait() [0x35d7f000..0x35d7fb68]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.awt.EventQueue.getNextEvent(EventQueue.java:479)
            - locked <0x075b3f08> (a java.awt.EventQueue)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:236)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    "AWT-Windows" daemon prio=6 tid=0x34f35000 nid=0x250 runnable [0x35b7f000..0x35b7fc68]
       java.lang.Thread.State: RUNNABLE
            at sun.awt.windows.WToolkit.eventLoop(Native Method)
            at sun.awt.windows.WToolkit.run(WToolkit.java:291)
            at java.lang.Thread.run(Thread.java:619)
    "AWT-Shutdown" prio=6 tid=0x34f34c00 nid=0x220 in Object.wait() [0x35a7f000..0x35a7fce8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x075b40c8> (a java.lang.Object)
            at java.lang.Object.wait(Object.java:485)
            at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
            - locked <0x075b40c8> (a java.lang.Object)
            at java.lang.Thread.run(Thread.java:619)
    "Java2D Disposer" daemon prio=10 tid=0x34f28400 nid=0xe68 in Object.wait() [0x354cf000..0x354cfd68]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
            - locked <0x075b4158> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
            at sun.java2d.Disposer.run(Disposer.java:125)
            at java.lang.Thread.run(Thread.java:619)
    "Low Memory Detector" daemon prio=6 tid=0x01bd3800 nid=0xc44 runnable [0x00000000..0x00000000]
       java.lang.Thread.State: RUNNABLE
    "CompilerThread0" daemon prio=10 tid=0x01bcfc00 nid=0x13ac waiting on condition [0x00000000..0x34b8f790]
       java.lang.Thread.State: RUNNABLE
    "Attach Listener" daemon prio=10 tid=0x01bcc800 nid=0x141c runnable [0x00000000..0x00000000]
       java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=10 tid=0x01bc2000 nid=0x244 waiting on condition [0x00000000..0x00000000]
       java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=8 tid=0x01bb2400 nid=0x164c in Object.wait() [0x3488f000..0x3488fc68]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
            - locked <0x07530298> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
            at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x01badc00 nid=0x1314 in Object.wait() [0x3478f000..0x3478fce8]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
            - locked <0x07530320> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x01c8a800 nid=0x1050 waiting on condition [0x00000000..0x0012fab0]
       java.lang.Thread.State: RUNNABLE
    "VM Thread" prio=10 tid=0x01ba9c00 nid=0x1438 runnable
    "VM Periodic Task Thread" prio=10 tid=0x01bd4800 nid=0x1598 waiting on condition
    JNI global references: 2950
    Heap
    def new generation   total 9216K, used 1044K [0x04400000, 0x04df0000, 0x07530000)
      eden space 8256K,   7% used [0x04400000, 0x0449e5a0, 0x04c10000)
      from space 960K,  42% used [0x04c10000, 0x04c76e10, 0x04d00000)
      to   space 960K,   0% used [0x04d00000, 0x04d00000, 0x04df0000)
    tenured generation   total 121024K, used 32700K [0x07530000, 0x0eb60000, 0x2c400000)
       the space 121024K,  27% used [0x07530000, 0x0951f2f0, 0x0951f400, 0x0eb60000)
    compacting perm gen  total 57600K, used 57471K [0x2c400000, 0x2fc40000, 0x34400000)
       the space 57600K,  99% used [0x2c400000, 0x2fc1fe60, 0x2fc20000, 0x2fc40000)
    No shared spaces configured.

  • Why is my Internet connection hanging on both MacBook and Mac mini, but not PCs, Xbox, or iOS devices?

    I have a MacBook pro and Mac mini both running the latest version of lion.  I've had this issue with my MacBook for sometime now, but just dealt with it and figured it was isolated, but now I am finding its not.
    Essentially, I will open up safari, or Chrome, and the first few pages will load fine.  Sometimes I will get lucky and be able to browse normally, but after awhile, safari just hangs there and stops loading.  I can close the window, and open a few more pages before it does it again.  Both my mini and MacBook do this, but only on my home network.  My MacBook runs perfectly fine on my work wi if, and other wi fis, so I definitely know its my home modem.  If I wait it out I can surf the Internet again, but this dead time is absolutely killing me. It just randomly stalls, on both computers.
    I current have time Warner cable roadrunner, with a cable modem gateway.  The issue was happening on a straight connection.  I had hoped getting a time capsule and connecting to that network would solve things, but it didn't.  Interestingly enough, my Pcs, Xbox,and all 4 of my iPads and iPhones work just fine on the wifi, so there has to be a communication issues with the MacBook and mini with the cable router.
    I've tried messing with lions network DNS servers and tried opendns ones, but those didn't work.  Sometimes I can fix the problem for a few hours by power cycling the modem and router, but I shouldn't  have to do that over and over every time it's an issue.  I've also tried removing and adding the wi if connections, but that.works for a minute or two and then the problem resumes.
    Now, I have my time capsule connected to the gateway, and tuned the time Warner modem wireless off, which didn't help of course, but at least I'm properly backed up.
    I'm not sure what the issue is.  I've even tried typing an ip address of apple during a dead time to see if that worked and didn't.
    Does anyone have any other ideas?  I'm pretty much at my wits end in this, any ideas would be greatly appreciated

    Have you tried a simple reset of your iPod to see if that helps?  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    Otherwise, have you tried any of the troubleshooting mentioned in this Apple support document?
    iOS: Troubleshooting Wi-Fi networks and connections
    B-rock

  • I keep losing my wireless connection after periods of inactivity - any solution? I recently installed a new wireless router with improved range.

    I recently installed a Netgear Wireless router for improved reception, but now my macbook loses connection through Airport after periods of inactivity.  We have another older Macbook in the house, and it never loses connection.  I never had this problem with the previous Linksys router, just limited range.  Any ideas what is causing this?  It's frustrating to have to frequently shout down and re-boot.  That so far is the only way I can re-connect.

    Adjust the Wireless Settings on your linksys router...
    Open an Internet Explorer browser page.In the address bar type - 192.168.1.1
    Leave username blank & in password use admin in lower case...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab on the Setup page- Here Wireless Network mode should be mixed- Provide any non linksys network name ....
    Name (SSID) box- Set wireless channel to 11- And wireless SSID broadcast should be Enabled and then click on "Save Settings" >>
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WPA, For Encryption, select AES...For Passphrase input your desired WPA Key. For example , MySecretKey , This will serve as your
    network key whenever you connect to your wireless network.
    Do NOT give this key to anyone.
    Click on Advanced Wireless settings>>
    Change the Beacon Interval to 75 >>Change the Fragmentation Threshold to 2304 Change the RTS Threshold to 2304 >>Click on "Save Settings" ...
    Try to look for the Wireless Network on your laptop and attempt to connect...

  • Win 7/Office 2010 hangs periodically - Network Problem?

    Hi,
    Our situation:
    We have one user (out of 60) at our company whose computer periodically goes into "spin cycle" and she must reboot it because it won't respond.  This happens a couple of times a week.  Generally, she always has Outlook 2010 open, along
    with a browser.  We have tried two different computers with the same setup (Win 7/MSO2010) and we are still seeing the "spin cycle".  We have tried two different Ethernet connections to our LAN switch and tried different ports on the LAN
    switch.    We are not sure what else to check, or where to begin looking.  Could this have anything to do with DNS or DHCP or ??
    Any suggestions would be greatly appreciated.
    Thanks, Linda

    Hi,
    How about your problem now? In my opinion, its hard to  identify what's the specific reason of this hung problem. Which app's process that came into Spin Cyle? Windows Explorer or Outlook, or both of them?
    To troubleshoot the problem, firstly, you can try to check Event log or Problem Report in Action Center. Generaly speaking, both of them would record the events of system hung.
    In addition, did you install any program before this problem occures? 3rd extension or app is most possible to cause this problem.
    If there is any progress about your poblem, please feel free let me know.
    Roger Lu
    TechNet Community Support

Maybe you are looking for

  • Getting error while writing JUnit test case for RestFul Services

    Hi All, I have written Restful services in Netbean 6.8. It's running well...no issues. {color:#0000ff}While writing JUnit test cases for them, I am getting following error: {color}{color:#993300}Testcase: testGetAuthenticated(com.ct.services.LoginSer

  • PCUI GP Deployment ERROR on Standalone Java Stack

    We are in the midst of deploying the PCUI archive via SDM (also tried JSPM) Got the following error Aborted: development component 'pcui_gp/isr/cfg'/'sap.com'/'MAIN_ERP05VAL_C'/'2515722'/'0', grouped by software component 'SAPPCUI_GP'/'sap.com'/'MAIN

  • Unable to Connect to the database in RCU, Oracle11g XE on Laptop/Windows

    Software downloaded unzipped and installed from OTN OBIEE foundation 11.1.1.5 Repository Creation Utility 11.1.1.5 Oracle Database Express Edition 11.2 Issues 1. I installed Oracle 11g express edition. I am able to start/stop and run sql against the

  • Sum within a self-contained parent-child table

    I have two tables - a "key" table containing a multi-layer parent-child relationship, and an "amount" table containing the keys for the leaf nodes in the key table as well as numeric values (e.g. amounts). I want a query that returns each row in the

  • Intercompany: same price

    Dear all, I am configure intercompany process but the client wants the same price in Goods Issue, Goods Receipt and Invocies. For example: Total value in Purchase Order is 100; But the Goods Issue is 80; The goods receipt must be 80 and not 100; and