Category: Programming
A few notes on a bug I had so next time I won't make the same mistake.
In spring-ws, in the class
org.springframework.ws.soap.saaj.SaajSoapMessage, in the method
getImplementation(), it uses
SaajUtils.getSaajVersion(SOAPMessage) to determine the SAAJ version
of this message. Unfortunately, that has a bug …
Read more
Posted Sun 08 May 2011
by mcherm
in Programming
In his
blog,
Eric Lippert issued an interesting programming challenge. (Follow the
link for details of the requirements.) Here is my solution.
#
# Programming challenge from
# http://blogs.msdn.com/b/ericlippert/archive/2010/09/09/old-school-tree-display.aspx
#
# Done in Python, by Michael Chermside
#
import unittest
import itertools
# ============== Provided Problem ==============
class …
Read more
Posted Thu 09 September 2010
by mcherm
in Programming
Just a brief entry so the NEXT time this happens I can search and find
the solution.Once before I had this problem, but I couldn't remember the
solution so this time I am writing it down. We (a Profile developer and
I) were adding a new MRPC. When I …
Read more
Posted Fri 20 August 2010
by mcherm
in Programming
In my previous
post, I
defined a number of different features that logging libraries could
have. This time, I will evaluate some Java libraries based on those
features. I'll start by ranking these according to how important I think
they are, at least for my purposes.
- Severity
- mandatory: no logging …
Read more
Posted Tue 09 February 2010
by mcherm
in Programming
Logging is not the world's most interesting computing problem, but it
is important, and it's been on my mind lately because people have been
pointing out that my company's use of logging is currently a bit of a
mess and ought to be cleaned up. Specifically, I've been thinking about …
Read more
Posted Mon 01 February 2010
by mcherm
in Programming