Before I give my (late) answer in response to some of the other answers, I'll give you a little summary of my background.
I learned various languages (mostly C, but no Cobol) at Edinburgh University in the mid-80s, including a look at OO programming with SmallTalk. Came to NZ in 1990 and got a job at my present company programming C and Cobol (which I had to learn). As a young punk fresh out of university, I thought Cobol was a bit 'beneath me' at the time, but soon settled into full-time Cobol programming. In 1999 I was given the job of rewriting the present system in the OO 4GL 'Forte TOOL'. That lasted a couple of years before Sun bought out Forte and killed it. After a few more years of Cobol we started the present project of rewriting the system in Java, using Spring, Hibernate, EJB3, etc.
If I had a choice out of all the programming languages I've used, I would use Cobol. In the 20-odd years I've been programming in Cobol there has never been a time that I've had to say. "No, I can't do that in Cobol". In fact, here in this office we have a tongue-in-cheek saying: "You can do anything in Cobol".
Our present system contains almost 4 millions lines of modularised Cobol code and is used by our Customers (meat processing plants or abattoirs) to track every aspect of their production from the buying of animals on farms, through slaughter and tracking of individual Carcases, to the packing/labelling/shipping of boxes of meat cuts.
Over the years, in Cobol, we've written software which:
- is client-server
- is multi-threaded
- is GUI
- talks HTTP to web-services
- uses sockets to communicate with dozens of different devices such as label-printers, weigh scales, PLCs, meat probes, barcode scanners, etc.
- is 'real-time' (some production processes require split-second timings)
- interfaces with many third-party systems
The latest Java project that I've been working on in the past 6 years has shown me that modern languages are not the silver bullet they are made out to be. So far we have only rewritten about a 5% equivalent portion of the old Cobol system and it's taken us 6 years (about 40% of the time it took us to write our whole Cobol system!). So far we've written over 3 million lines of Java code.
Moving from Cobol to Java literally felt like getting back down on my hands and knees and crawling. That's despite the extensive use of complex tools and frameworks like NetBeans, Maven, Spring, Hibernate, Felix, etc. to do a lot of the 'work' for us.
In Cobol, if one of our almost 3,500 modules has a bug in it, we can patch that module, ship it to a customer site (only a few kb), copy it over the top of the existing one and the bug is fixed instantly. Most times the user doesn't even need to log out. Try doing the same thing with a patched Java Class definition in an EAR or WAR! Some of our Customers operate 24/7 with 99.99% up-time. We simply cannot tell them they need to log everyone off, shut down the server, install the new EAR/WAR and then restart the server. Have you ever had several hundred big, hairy meat-workers, who get paid according to production throughput, standing around with sharp knives waiting for your software to restart?
So why are we rewriting? Mainly because young upstart IT managers from prospective Customers take one look at our 'green-screens' and mentally switch off. Because of the perception of Cobol as an old, crap programming language, we have to bring ourselves 'up-to-date'.
We're also aware that the remaining Cobol vendors are now in a cannibalistic phase of consolidation as their market shrinks, and it won't be long until they're all dead, along with the last of the Cobol-trained programmers.