Re: How to use SOAP to deliver a Cocoon report?

2009-09-28 Thread Andreas Kuehne
Hi Alexander, I didn't get your solution right, I guess ... as far as I understand Davids use case he will get a soap request, want's to fiddle out some parameters and return a report wrapped as a soap response. This fits into these sparse lines of sitemap : map:generate

Re: How to use SOAP to deliver a Cocoon report?

2009-09-28 Thread Alexander Daniel
On 28.09.2009, at 09:50, Andreas Kuehne wrote: Hi Alexander, I didn't get your solution right, I guess ... as far as I understand Davids use case he will get a soap request, want's to fiddle out some parameters and return a report wrapped as a soap response. This fits into these sparse

sending data from flowscript to another pipeline

2009-09-28 Thread Robby Pelssers
Hi all, I have a searchform (cocoon forms) where the user get's back some dataset and by default I show an html table containing the data. I now would like to add an export to CSV button which converts my dataset to CSV and prompts the user with a download option. Is this possible and

Re: sending data from flowscript to another pipeline

2009-09-28 Thread DAVIGNON Andre - CETE NP/DIODé/PANDOC
Hi, Not sure to understand your use case but if you want to send data from flowscript to another pipeline, just try : cocoon.sendPage(cocoon://myPage,{data: myData}); and have a look at http://cocoon.apache.org/2.1/userdocs/flow/api.html André Le 28/09/2009 15:24, Robby Pelssers (par

RE: sending data from flowscript to another pipeline

2009-09-28 Thread Robby Pelssers
The problem is that I'm in a showForm() loop so a sendPage results in a this pipeline has already been processed exception. -Original Message- From: DAVIGNON Andre - CETE NP/DIODé/PANDOC [mailto:andre.davig...@developpement-durable.gouv.fr] Sent: Monday, September 28, 2009 3:39 PM

Re: How to use SOAP to deliver a Cocoon report?

2009-09-28 Thread David Beasley
Thanks for both your suggestions; Andreas' idea was what I was looking for - a way to create a pipeline in Cocoon that takes a SOAP request as an input XML document, and performs various transformations so as to turn that into as SOAP response XML document. Yes, I can see now how it could be