Hi,
I'd like to take the state of my current pipeline and populate an
xmlbean from this in the flowscript.  Is this something that's already
easy to do?  Here's what I'd like to do:

      <map:match pattern="somePattern*">
        <map:generate type="request"/>
        <map:transform src="someXsl.xsl" label="myLabel"/>
        <map:call function="{someFunction}"/>
      </map:match>

After the xsl transform, I will have a valid instance of my xmlbean. 
Then in my flow script I could do something like this:

  var sh = org.apache.xmlbeans.XmlObject.Factory.XmlSaxHandler();
  var ch = sh.getContentHandler();
  <this is what I'm missing>
  var myBean = sh.getObject();

Am I on the right track here?  Looking through this page:
http://cocoon.apache.org/2.1/userdocs/flow/api.html
I don't see any objects that can send events to the contenthandler...

Any guidance is appreciated.
Thanks,
Ben

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

Reply via email to