Java EE 6 Overview
Here’s a very high level overview of some of the features in Java EE 6. The most interesting to me is that web.xml is being made optional by adding more annotations. There is also a new notion of “profiles” which allow you to pick and choose what features of JEE (specs, frameworks, etc…) you want. Watch the video here.
Finally on Twitter.
I’ve been putting this off for a long time but have now decided to create a Twitter account. If you are interested, you can follow me.
Web Services Conceptual Architecture Document Helpful
If you, like me, are trying….struggling to learn how to implement and/or consume web services there is one document that will help conceptually. I happened to find an IBM document entitled Web Services Conceptual Architecture that laid out the architecture for web services way back in 2001. Even though its old and full of pompous IBM predictions about web service standards (that have not yet come true) it is still a useful and relevant document.
I’ve had a hard time finding references that do not assume you understand the architecture of web services and I’ll bet that you have too.
More Software Incompetence
In a past post I showed an example of how malfunctioning software can lead intelligent humans to make poor decisions. In that case, blind trust for the competence of the software was the most likely cause. Here is another example of acute software incompetence.
This is a scan of an account statement for a newly opened credit card. This is a real credit card that I recently signed up for. You can see it’s new by all the zeros on the page. You might, however, notice one number larger than zero, quite larger.
Somehow, with only a $1000 credit limit total the creditor is willing to give me a cash advance of $9,999,999,999,999! That’s 13 nines. That’s one dollar short of 10 Trillion dollars. That’s just not right.
Fortunately this won’t hurt me for two reasons: one is that I never use the cash advance feature of a credit card, and the second is that this mistake is so gratuitous that I know it can’t be correct. I haven’t called the credit card company yet because I’m actually just curious to see what happens after the account has some activity on it.
What’s interesting about this, from a programmer’s perspective, is that such an oversight was allowed into production code. A brand new account seems like an obvious test case to me. And what this means is that the software development process at the credit card company failed in several ways. At the unit test level there either was no unit test for the cash advance limit or it is missing an important case. At the interface level it means, again, that no one ever checked the common scenario of a new account with no activity. Even though it’s impossible for me to know, it may have even been a requirements issue. Maybe no one ever asked for this to be checked, who knows?
Software Incompetance (can lead to human incompetance)
The picture below demonstrates a big problem in the current state of software usage. Right now it is too inefficient for a corporation not to automate many processes. However, the software used to automate those processes is just not as smart as people are. Most of the time this works out alright, but not always. There are always edge cases and edge cases are what can make a big difference in how sophisticated your software really is.
Now, if a human with a little common sense were making the price tags, and not a software application lacking in sophistication, the price tag below would probably not have been created because it just doesn’t make sense. Interestingly, the opposite, and more damaging, situation occurred. Because a dumb program created a price tag just because of a single penny drop in price some thoughtless employee felt compelled to actually hang it! This is indeed a failure in software and our trust in it.

Eat your own dog food?
For some reason this saying popped into my head today. I think I was tenuously thinking about unit testing and I remembered that I’d heard the phrase “Eat your own dog food” at some conference session on testing. Then I thought, “what a stupid saying!” Even if I had a dog food company I wouldn’t literally eat the dog food, I do have some common sense. I would, however, definitely feed the food to my own dogs.
Now, I now what is meant by the expression, but, for some reason, this just really irritated me. This phrase now sits in my mind as intelligent as when someone tells me they took something for “granite”.
Here’s a rather serious Wikipedia entry on Eating one’s own dog food.
When software fails at the wrong time…
I recently had to take my pregnant wife to the hospital to treat a kidney infection. One of the first things we did after we got into a room was to answer an absolute torrent of medical questions. The nurse performed data entry into the hospital’s patient management software while she was asking the questions. The process took about an hour to complete. All the while my wife was not being treated and was in severe pain.
Now, had nothing gone wrong with the patient management system, the sheer amount of questions would still have taken at least forty-five minutes. I’ll grant that this time was necessary, especially because my wife is pregnant, to ensure that the diagnosis and treatment were done correctly. However, the extra fifteen minutes that my wife had to suffer through existed only because of failures in the patient management system.
The first problem was that the nurse was stumped when she tried to put in the answer my wife gave to a question and there was no drop-down entry for it. The question was “are you allergic to latex?” The answer, as so often happens in real life, was “sort of”. The nurse became aggrevated because the choices for her to choose from to enter the answer didn’t include an answer like that (which actually was that she is sensitive to latex). As a result, the nurse wasted time trying to force my wife’s answer into one of the application’s pre-defined choices. She actually resorted to trying to talk her into claiming that she has a full-blown allergic reaction to latex when that isn’t true! A poor implementation of software caused a nurse to do her job poorly. That is absolutely unacceptable.
The rest of the wasted time was due to some other glitches in the patient management system that weren’t as serious as serious. The application completely shut down at one point without an obvious cause. Later, the nurse had to re-type in a few sentence’s worth of explanation three times because the data wouldn’t save properly the first two times. Fortunately these events didn’t have as much of a negative impact on patient care as the first problem, but they did waste valuable time.
The point is that software developers should always strive to elliminate software failure, yet there are times when failure in software means more than just lost time and money. That critical failure, as in my anectdote, can cause extended suffering and loss of good, humane care when it is needed most. If you are a developer on such a software application then you should be ensuring that your software works correctly for real situations. This incident shows me that the software industry still fails to provide what people really need in real situations.
Programming under the Scientific Method?
Just as a good blog should be, here are some loose thoughts on programming that I’ve had lately. I have spent some time thinking about my process for writing code. In fact, I’ve been thinking about what I have been able to glean so far about the process that the mass of programmers in the world go through to write software. The impression that I have is that writing software is not scientific enough.
The germ of this idea is that I’ve never felt that I could quantitatively prove that the way I write code actually produces a working, correct result. This was before I really understood the idea of unit testing. I started going to conferences and working on a Masters Degree in Computer Science and began to learn about the idea of unit testing. Only at first, I thought that unit testing was the answer to qualitatively proving that my code was working and correct. Unit testing certainly appears to be the answer because of its emphasis on incrementally proving that the code is correct as per the rigor of each test. Yet, after about a year of actually working with unit testing I’m starting to question the true strength that unit testing provides.
There is no doubt that unit testing provides rigor around the software development process — theoretically. At any software development conference there is no shortage of unit testing pundits who espouse the benefits of the practice and explain the process for incorporating testing into your development process. And attending these conferences is largely a group of people whom have no doubt that unit testing is an honorable practice. Practically though, the test is usually only as strong as the will of the programmer to write a good test. The example being that I can write very poor unit tests for every unit either because I misunderstand the process or because I don’t care enough to write good tests. Neither is helpful in providing evidence of working and correct code. Further, even though the discipline of good unit testing can provide some proof that code is working and correct, there is almost no proof (I have only heard anectdotes) that starting the practice of unit testing actually changes the quality of software.
The failed panacea of unit testing for providing quantitative proof of working and correct code lead me to think about why it didn’t really solve the problem. Eventually the Scientific Method came to mind. When that happened I wondered why we don’t talk about the software development process in the context of such a solid framework? The Scientific Method works for all other sciences, why shouldn’t it apply to Computer Science?
So, finally, here is the main thought in this post. I believe that at least understanding the Scientific Method may improve the process of software development . In this post I won’t explain the Scientific Method or talk about how it applies to software engineering in a practical sense, instead, I’ll only mention that thought and leave it for you to ponder.
I think that the reality is that writing working and correct software is a grand challenge and requires rigor if it’s ever to become a standard. Great ideas such as unit testing (and its accompanying process Test Driven Development) undeniably add to the rigor or software development but fail to make a complete process for developing working and correct software. I’m curious to know if thinking about software development in terms of the Scientific Method would help bridge the gap between writing code and unit testing to make a cohesive process that can be analyzed and proven quantitatively.
…
There are a lot of scattered thoughts here that are either leaving gaping holes or need expansive exploration to fully explain. I understand that and I hope that myself or others can fill in those gaps. I’m immensely interested in exploring this idea and discovering where it leads.
Groovy and XWiki
The more I use a wiki at my day job the more I come to rely on it. I have found it to be an outstanding documentation and note-taking tool. At work I installed the Moin Moin Wiki which myself and two other developers contribute to regularly now. We are using version 1.6.something and have been happy with it.
I recently installed a new kind of wiki at home. XWiki, the self-proclaimed second generation wiki, is more than just a wiki. XWiki adds the very desirable capability to add two kinds of scripting languages directly into the wiki pages: Groovy and Vortex. This capability could allow you to write quick-and-dirty web applications directly in the wiki. It’s all object oriented and runs on a JEE back end.
In my brief encounter with XWiki so far the most exciting part is the Groovy support. Groovy seems to be exciting lots of Java developers and I’m one of them. XWiki also has a very flexible and, so the XWiki developers say, an enterprise ready wiki architecture.
The major problem I see with XWiki’s Groovy support is that the code is embedded directly in the wiki pages. At first glance this seems to be bad form when I think of all the “best practices” I’m always attempting to digest and use.
I’ll have to investigate more to see how this all plays out. Let me know your opinion if you have some experience with XWiki.

