JBoss thread leaking JMS problem

All these zombie threads had apparently been created by JBoss’s JMS/MQ system to facilitate reading messages from a JMS sender, and these threads were never knowing to terminate themselves, even when we’d been finished consuming the messages on the server-side.

(Non-technical readers of my blog, you’ll want to glaze past this entry. This is a case where I encountered a problem, scoured the net for any clues and, finding none, slogged on forever until finally solving it. I’m writing this entry because I’ve found that the last couple of times I’ve solved an obscure computer problem, if I posted my solution in my blog then the entry would accumulate lots of comments saying “Thanks so much. I was really stuck on this.”)
Continue reading “JBoss thread leaking JMS problem”

A very helpful article

It’s so gratifying to get these comments like “WOAH! I would *never* have thought of that. Thank you thank you thank you thank you 😀 I was just about to take the iSight back to the store.” (a recent comment)

I just was going through my blog-software system, and I noticed just how many comments had been generated by my earlier article (really, just a blog post) “iChat/iSight and Postgres Memory Bug“. When I’d discovered the solution to that problem I had been amazed how there had been no articles in any “Google searches” that addressed that particular problem; so I figured I would jot down a quick blog entry (apologizing to my non-technical audience) so that eventually Google searches would direct people here for the answer.
Continue reading “A very helpful article”

Microsoft’s Best Next Play, Intel’s Vaporware

Fool me once (Itanium/Merced) shame on me…

Microsoft and Intel are in the same troubled boat as far as I’m concerned. Both megalithic companies have been complete yawners for the past five years or so. Now Microsoft is trying to dig up some enthusiasm for Windows Vista (formerly code-named Longhorn) and as far as I can tell, people couldn’t care less. I think I have the idea that could save them.
Continue reading “Microsoft’s Best Next Play, Intel’s Vaporware”

XDoclet Hibernate “joined-subclass” tags don’t work.

I was attempting to create an implementation of “Joined Subclasses” via the @hibernate.joined-subclass command. Here’s the really brain-dead thing: from what I can tell, this XDoclet class tag simply does not work, and I’m not sure it ever did!

(A quick apology for any readers who have no idea what this posting is about. In my work I’ve come across a really annoying bug in some technology, and my “Googling” research didn’t come up with any good answers. It has taken me a few days to really get all of this right, so I’m hoping if some poor sod has the same problem, he or she will come across this blog posting in order to save a massive amount of time.)

I am working on an enterprise application using J2EE (JBoss) with Hibernate as the substitute for the brain-dead CMP 2.0 Entity Beans. Our development environment is Eclipse with XDoclet.

I was attempting to create an implementation of “Joined Subclasses” via the @hibernate.joined-subclass command. Here’s the really brain-dead thing: from what I can tell, this XDoclet class tag simply does not work, and I’m not sure it ever did! In my XDoclet book (and the Javadoc api page) there’s a @hibernate.joined-subclass-key which would be necessary to fully-define a joined subclass, but in the xdoclet module this tag doesn’t appear to exist. I’d found a web forum entry where someone claimed Eclipse’s autocompletion didn’t recognize it, but that you could manually type it in, but I wasn’t able to get it to work!
Continue reading “XDoclet Hibernate “joined-subclass” tags don’t work.”