Re: R: Strings to SAX events

2002-11-15 Thread Damian Chojna
.. yourXMLString ... Regards, Ludovic - Original Message - From: "Damian Chojna" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 14, 2002 6:02 PM Subject: Re: R: Strings to SAX events Hi Reinhard, thanks for the last post. I also need to

RE: R: Strings to SAX events

2002-11-14 Thread Reinhard Poetz
> -Original Message- > From: Damian Chojna [mailto:d.chojna@;adv.pl] > Sent: Thursday, November 14, 2002 6:02 PM > To: [EMAIL PROTECTED] > Subject: Re: R: Strings to SAX events > > > Hi Reinhard, > > thanks for the last post. I also need to add a string

Re: R: Strings to SAX events

2002-11-14 Thread Andy Lewis
gt; yourXMLString > > > ... > > Regards, > > Ludovic > > - Original Message - > From: "Damian Chojna" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, November 14, 2002 6:02 PM > Subject: Re: R: Strings to SAX

Re: R: Strings to SAX events

2002-11-14 Thread Ludovic de Beaurepaire
quot; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 14, 2002 6:02 PM Subject: Re: R: Strings to SAX events > Hi Reinhard, > > thanks for the last post. I also need to add a string as XML elements > into an XSP generator and I used your suggestion (below

Re: R: Strings to SAX events

2002-11-14 Thread Damian Chojna
Hi Reinhard, thanks for the last post. I also need to add a string as XML elements into an XSP generator and I used your suggestion (below). It seems to work well, but I have two questions: 1) I've noticed that the API states that the Parser is deprecated. I'm currently using 2.0.3, if I choose

RE: R: Strings to SAX events

2002-11-08 Thread Steven Cummings
Luca, I'm doing something very similar to implement a SOAPTransformer. What I've done is implement an XMLConsumer so that it passes ALL events that it recieves directly to the transformer's super-class (super.startElement, super.endElement... etc.) Because you've probably already started an out

Re: R: Strings to SAX events

2002-11-08 Thread Marcus Crafter
Hi Luca, Have you seen the WingsTransformer in 2.1 scratchpad ? It converts xcml (over at Krysalis) chart markup to svg which you can then give to svg2png/etc. I'm using it at the moment and it works quite well for pie, line and bar charts. Perhaps

Re: R: Strings to SAX events

2002-11-08 Thread reinhard_poetz
Luca, In a generator I use flowing code within the generate()-Method. Maybe this helps: parser = (Parser)this.manager.lookup(Parser.ROLE); parser.setConsumer(super.xmlConsumer); parser.parse(new InputSource(new StringReader(sb.toString(; Regards, Reinhard > Ludovic, >