RE: startSerializedXMLRecording and endSerializedXMLRecording

2003-02-04 Thread Carsten Ziegeler
Have a look at the cinclude or the sql transformer for examples.

Carsten

 -Original Message-
 From: Lionel Crine [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, February 04, 2003 3:15 PM
 To: [EMAIL PROTECTED]
 Subject: startSerializedXMLRecording and endSerializedXMLRecording
 
 
 I'm trying to implements my transformer but I can't figured out 
 how to use 
 these methods.
 
 Here is what I did :
 
 protected Stringbuffer body = new StringBuffer();
 
   public void startElement(String namespaceURI, String localName, String 
 qName, Attributes attributes)
   throws SAXException
  {
   try
   {
   this.startSerializedXMLRecording(this.format);
   this.body.append(this.endSerializedXMLRecording());
   }
   catch (Exception e){}
   super.startElement(namespaceURI, localName, qName, attributes);
 } 
 
 I thought I was enought to get the elements in my StringBuffer, but it's 
 still empty.
 
 Moreover, there no documentation about this and the examples in 
 the source 
 don't use thes methods.
 
 Anyone knows what's my mistake ?
 
 
 -
 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]
 

-
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]




Re: startSerializedXMLRecording and endSerializedXMLRecording

2003-02-04 Thread Brian Johnson
You need to call endSerializedXMLRecording in your endElement method. 
The AbstractSAXTransformer is setup to pick out elements based on a 
namespace uri. You can look at the code for startElement and endElement 
to see how to pick the xml fragment you want based on a qname.
Brian

On Tuesday, February 4, 2003, at 09:14  AM, Lionel Crine wrote:

I'm trying to implements my transformer but I can't figured out how to 
use these methods.

Here is what I did :

protected Stringbuffer body = new StringBuffer();

 public void startElement(String namespaceURI, String localName, 
String qName, Attributes attributes)
	throws SAXException
{
	try
	{
		this.startSerializedXMLRecording(this.format);
		this.body.append(this.endSerializedXMLRecording());
	}
	catch (Exception e){}
	super.startElement(namespaceURI, localName, qName, attributes);
}	

I thought I was enought to get the elements in my StringBuffer, but 
it's still empty.

Moreover, there no documentation about this and the examples in the 
source don't use thes methods.

Anyone knows what's my mistake ?


-
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]



-
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]