Hello, I'm using fop to generate documents in my webapps. Like most people I build a sax stream and pass it fop. Until now it worked fine but now I have to use "evil" namespaces. *grr*
Normally I would write tags like this: hd.startElement(null,"Menge","Menge",atts); hd.characters(Menge[0].toCharArray(),0,Menge[0].length()); hd.endElement(null,"Menge","Menge"); Now I need to have prefixes in my tags hd.startElement(null,"Menge","cbc:Menge",atts); ... hd.endElement(null,"Menge","cbc:Menge"); The xml document looks ok. But the xsl file can't find the tags with namespaces although I declared the namespace-uri's both in the original xml and also the xsl file. Does anyone know what's wrong? Cheers, Pete --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
