• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Thread Hung

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am getting following msg when running a web app in RAD 6 ,WAS 6 in debug mode:

00000021 ThreadMonitor W WSVR0605W: Thread "WebContainer : 2" (0000002a) has been active for 699416 milliseconds and may be hung. There is/are 1 thread(s) in total in the server that may be hung.

Please Advice.

Thanks,
Deepak
[ September 13, 2007: Message edited by: deepak bagdiya ]
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can usually ignore this message when you're debugging. All it's telling you is that the thread is taking an awfully long time to complete. If you've got it stopped at a breakpoint while you look at variables, you know very well why it's taking a long time to complete
 
deepak bagdiya
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please suggest how do I proceed while debugging,because when the thread is hung I have to kill the current debug session and next time when I start debugging again same thing is happening even if i don't spend any time watching varable and just keep using step in.

Thanks,
Deepak
[ September 14, 2007: Message edited by: deepak bagdiya ]
[ September 14, 2007: Message edited by: deepak bagdiya ]
 
Merrill Higginson
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You will note that the message says the thread may be hung, not that it is hung. In this case it isn't really hung. It' just taking longer than usual because you're using the debugger.
 
Ranch Hand
Posts: 82
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
just go into the connection settings and raise the connection timeout interval in the admin console and restart. That way you can take all the time you want while debugging
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic