XML developers
We're using XPath on my current project and it's not something that I've used since 2000. Back then, Xerces and Xalan were separate Apache projects and I don't think JAXP was available. If you've not seen it before, XPath is a useful little language that you can use to retrieve nodes from an XML document based upon an expression that lets you match nodes and their content as you traverse down the DOM tree. You can also do other stuff, such as perform simple node set comparisons that return boolean results.
Back in 2000 when I used XPath for the first time, it was all so easy. DTDs weren't in regular use and I don't think we'd even considered using the concept of namespaces. Our XML documents were just that - very straightforward with a few angle brackets here and there. Well-formed, but not necessarily valid.
Step forward a few years and it's a different world altogether. Now we have XML Schema, namespaces and the emphasis is on making sure systems interoperate correctly by using valid XML that makes use of namespaces to mix together elements from different schemas.
It used to make me laugh when I saw the term "XML developer" but there's definitely a niche for being just more than a [Java|.NET|etc] developer with some casual skills in the use of XML. Throw web services into the mix and you've got a full-time role just taking care of the XML stuff on your project. Aren't all these standards supposed to make our lives easier?
Re: XML developers
Re: XML developers
The one size fits all mentality is alive and well and it seems like we still haven't learnt that it's a double edged sword of increased coverage versus greater complexity. Ironically, I suspect that greater complexity potentially means that we use something less often simply because we can't get to grips with it which in turn renders all those additional features pointless and costly.
Ruby on Rails is kind of interesting in that respect. It's started from the position of doing a narrow task well but there's increasing pressure to cover more corner cases and expand functionality. Rails has rough edges but it's still got a nice balance of utility versus complexity - it's good enough. It'll be interesting to see if it remains this way over time.
Re: XML developers
It reminds me why people use REST and XML-RPC rather than web services. If you want to deliver a service in a platform independent way, why go to all the trouble of using SOAP et al.
Good observation on Rails, it will be interesting whether it stays focussed or turns into the next J2EE.
Simon is a hands-on software architect and a senior consultant at 

