Guido Casper wrote:
Did anyone else also feel the need to have something like processPipelineTo but getting a DOM or just an InputStream instead of just streaming it directly to another OutputStream?
Guido
Geoff Howard wrote:
Upayavira wrote:cocoon.getComponent(Packages.org.apache.excalibur.source.SourceResolver.
Maybe my last question was too specific.
I'm trying to parse the contents of a source into a DOM in Flowscript, but am getting all sorts of errors. Can anyone provide a better way than this (which doesn't work)?
var resolver =
ROLE);
Packages.javax.xml.parsers.DocumentBuilderFactory.newInstance().newDocumvar source = resolver.resolveURI("blah.xml"); var builder =
entBuilder();
I think I have observed that you cannot use the returned result of a java method call ( newInstance() ) as a java object in flow ( .newDocumentBuilder() ).
The workaround I have found is to separate the calls:
var builderFactory = Packages.javax.xml.parsers.DocumentBuilderFactory.newInstance();
var builder = builderFactory.newDocumentBuilder();
I don't know if this is a bug or not, don't know if it's only when calling with Packages or not. I also have not carefully confirmed this.
Finally, don't we have a convenience component to do this?
Geoff
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
