Vadim Gritsenko wrote:
>>From: Ugo Cei [mailto:[EMAIL PROTECTED]]
>>I came up with:
>>
>>      import org.apache.cocoon.components.parser.Parser;
> 
> 
> Use org.apache.avalon.excalibur.xml.Parser.
> 
> Vadim

Don't you just love it when interfaces change in an incompatible way and 
  there are no relevant docs on the Avalon site? ;-)

By the way, I was using these instructions:

     parser.setConsumer(new IncludeXMLConsumer(xmlConsumer));
     parser.parse(is);

Turns out there are no such methods in 
org.apache.avalon.excalibur.xml.Parser. What is a poor developer to do? 
Just use javap! A little ingenuity and here is the solution:

     parser.parse(is, new IncludeXMLConsumer(xmlConsumer));

and it's even shorter :-).

Such is life on the bleeding edge ;-).

--
Ugo Cei - http://beblogging.com/


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to