[
https://issues.apache.org/jira/browse/ABDERA-211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12705718#action_12705718
]
James M Snell commented on ABDERA-211:
--------------------------------------
A fix is implemented and pending. Will check it in once my access to
svn.apache.org is restored
> No way to explicitly declare namespaces using StreamWriter interface
> --------------------------------------------------------------------
>
> Key: ABDERA-211
> URL: https://issues.apache.org/jira/browse/ABDERA-211
> Project: Abdera
> Issue Type: Bug
> Affects Versions: 0.4.0
> Environment: NA
> Reporter: Michael Ahern
>
> There is no way to declare a namespace using the Abdera StreamWriter
> interface. This leads to redundant namespace declarations throughout the
> generated XML documents.
> To make this work in with the underlying XMLStreamWriter set the following
> factory option:
> XMLOutputFactory factory = XMLOutputFactory.newInstance();
> factory.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, true);
> And then provide the following two methods to the StreamWriter interface:
> 'setPrefix()'
> 'writeNamespace()'
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.