RE: Recursive Pipeline

2004-03-15 Thread Conal Tuohy
Ack! Fingers slipped! Here's what I meant to write: > I did something like this once, to aggregate a list of html > pages together. Each page had a [next] link at the bottom, > and my pipeline basically followed these links. I think you > want something similar. I don't have the code still, but

RE: Recursive Pipeline

2004-03-15 Thread Conal Tuohy
Alex Romayev wrote: > I have a process in which in need to call the same > pipeline recursively and aggregate the results. > > Basically, I have a pipeline which parses a paginated > HTML page: > > >src="http://www.foo.com?page={request-param:page}/> > > > > > The pipeline needs to

Recursive Pipeline

2004-03-10 Thread Alex Romayev
Hi, I have a process in which in need to call the same pipeline recursively and aggregate the results. Basically, I have a pipeline which parses a paginated HTML page: http://www.foo.com?page={request-param:page}/> The pipeline needs to look for a particular record, if it doesn't find

Re: error handling across recursive pipeline calls? (repost)

2004-01-13 Thread Joerg Heinicke
AFAIK it's not that easy. Maybe somebody else can correct me, but an internal cocoon:/ request is handled the same way an external request is handled. I.e. a pipeline is searched for it and if non is found (that's the case for your failing action) an error is thrown. This is caught by an error

error handling across recursive pipeline calls?

2004-01-09 Thread Lars Huttar
Hi all, I've been struggling with some error handling issues for several days now. Perhaps the key to my problems can be found in the answer to the question, can errors propagate beyond a pipeline call? E.g. if I have the following pipeline: It do