Re: XML Transforms and namespaceURI

2007-03-07 Thread Grzegorz Kossakowski
Schmitz, Jeffrey A napisaƂ(a): As I struggled a little with this, and I couldn't find a such an example anywhere, I thought I'd post my simple custom transformer here. Please take it with a grain of salt, I'm very new to this, so I'm sure there are better ways, but this at least seems to work.

RE: XML Transforms and namespaceURI

2007-03-07 Thread Schmitz, Jeffrey A
Nevermind, My ultimate problem was I wasn't calling super.setup() in my transformer's setup method, thus the namespaceURI variable was not getting initialized (i.e. it was null), and caused a nullPointerException during translation. As I struggled a little with this, and I couldn't find a such