Friday, 29 July 2011

TeamCity - my first impressions

Share
So far I have been using CruiseControl as my CI server for both Java and .NET projects. This week I decided to give TeamCity a try.

Monday, 4 July 2011

Two way communication in JMS

Share
Today I will debuke quite a popular myth about one-way only communication in JMS. There is no classic request-response equivalent of course (just like there is in AMQP), but a message may convey a reply to header containing a reference to a temporary queue. This way we can achieve two way communication in JMS.

Below I give you a simple JUnit test which illustrates the idea.