-
In the project I am working on right now we use apache XCF and Spring to provide a SOAP service to our customers. As part of the messages, there is a userid/password combo telling the application which user sent the request. I struggled with that today because I think that userid/password info should actually be in the …
Read More -
Have you ever started a shell script which takes a while and you keep monitoring that window because you really need those results? If you are working on a Mac, you can use the Mac's power of speech to tell you a command is finished. Here's how: [sourcecode language="bash" gutter="false"] …
Read More -
If you have worked in IT as long as I do, you probably have noticed that developers have a tendency to not be on time. They are late for meetings, late for lunch, and on other days they are in at 6am or (and) they work until 3am the next morning. If you ever wondered why this is, I might have some answers for you. You …
Read More -
This week I created a jMeter test setup for distributed testing. I thought it would be straight forward but I ran into some interesting things you might want to know if you are considering distributed testing using jMeter. In my case, I had to test an application which was inside our corporate network, while working …
Read More -
This year's Dutch Java Nerd event called J-Fall was held in Nijkerk, in a beautiful location called "Hart van Holland" . With plenty of sessions by speakers from all over the world it promised to be a great day for Java enthusiasts, at a great location for meeting friends and colleagues. I took a day off from …
Read More -
The top feature of the eclipse IDE is the very impressive refactoring possibilities. It makes code feel like play-doh, allowing you to knead it in any shape way or form you think fits the current situation. A close second to that is the impressive templates and code assist. Yes, Java is verbose, but I think 80% of the …
Read More -
Jenkins, the brilliant Continuous Integration build server, has a bit of a problem with the Maven surefire jUnit test plugin. Last sunday, I discovered that our Jenkins build server suddenly started ignoring test failures. While the logfile clearly states that the Unittests contain failures, Jenkins marks the builds as …
Read More -
As a long time user of Eclipse, I have never understood the any of the tabs of the Search panel in Eclipse. JavaScript search, Java Search, Remote Search, they all make no sense to a modern man who is used to a single search box which searches everything. So I always use the "File Search" Tab, which does …
Read More -
In our company, all Java projects are setup with Maven configuration so that after a "mvn eclipse:eclipse" any developer is generally good to go. One of these projects was a web project but would not transform into a WTP project. By running "mvn eclispe:eclipse" it became a Java project, but could …
Read More -
In Java, the DateFormat.parse() method is a funny little critter. It helps you by trying to figure out what date you actually meant when you typed in "35/12/2O10" (note the letter "O" in 2O10). In this case, it will parse the date without errors or warnings, and returns the date "11/12/04" …
Read More