<< August 6, 2008 | Home | August 8, 2008 >>

Kuschelworkshop

Eindrücke vom MinD Camp 2008

Wenn ich von meiner Teilnahme am diesjährigen MinD Camp berichte, taucht eine Frage immer wieder auf: Was hat man sich eigentlich unter dem Programmpunkt "Kuschelworkshop" vorzustellen?

Read more...

Tags :

Using Namespaces in XSLT and XPath

Don't miss factory.setNamespaceAware(true)

You can use namespaces in XSLT and XPath like

<xsl:value-of select="//a:account/b:accountType"
  xmlns:a="http://example.com/accounts"
  xmlns:b="http://example.com/types"/>

For this to work in Java the document builder must be namespace aware otherwise namespaces are stripped when parsing the document and your transformation will fail for obvious reasons.

DocumentBuilderFactory f = DocumentBuilderFactory.newInstance();
f.setNamespaceAware(true);

At least in JDK 6 the default seems to be false.

Tags :