Re: XML in actions

2002-05-24 Thread KOZLOV Roman
Sent:Thursday, May 23, 200212:02 PM > To: '[EMAIL PROTECTED]' > Subject: XML in actions > > I need something (action/generator) that talks to a backend system to > get xml. The problem is I can't use a generator because I also want > to use the xsp generator in the sam

Re: XML in actions

2002-05-23 Thread Christian Haul
On 23.May.2002 -- 02:20 PM, Mike Ash wrote: > I like the number 2 option but I can't seem to find how to get the xml out > of the objectModel in an XSP. Is there an example in the cocoon dist? Have a look at the util logicsheet. Basically, use expr Other include tags are include-file include-u

RE: XML in actions

2002-05-23 Thread Mike Ash
Title: XML in actions I like the number 2 option but I can't seem to find how to get the xml out of the objectModel in an XSP.  Is there an example in the cocoon dist? -Original Message-From: Chitharanjan Das [mailto:[EMAIL PROTECTED]]Sent: Thursday, May 23, 2002 2:06

RE: XML in actions

2002-05-23 Thread Chitharanjan Das
Title: XML in actions These are the following options   Store the XML in the request object (request.setAttribute(“xml”, xmlStr); return the XML in the hashmap. This xml can be accesses as sitemap parameters in XSP. Also can be stored in Session (not advised

XML in actions

2002-05-23 Thread Mike Ash
Title: XML in actions I need something (action/generator) that talks to a backend system to get xml.  The problem is I can't use a generator because I also want to use the xsp generator in the same pipeline.  So how can I get an action to return xml that is available to xsp as xml. Here