Hi, i'm using the following function to marshal a castor object into cocoon.
/** * marshalls an object into cocoon * * @param obj an <code>Object</code> the Castor generated Object * @param map a <code>Mapping</code> the Castor Mapping Object for the given object * @exception Exception if an error occurs */ private void marshal(Object obj,Mapping map) throws Exception{ Marshaller marshaller = new Marshaller(new DocumentHandlerAdapter(new EmbeddedXMLPipe(this.xmlConsumer))); marshaller.setMapping( map); marshaller.marshal(obj); } you can call this from an xsp-page to render your data. hth, frank --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faqs.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>