Hi,
I have a flowscript function which passes some variables to an external site. The site will send back a success or failure confirmation based upon the parameters passed. What I want to do next is continue on the from the next point in time after the external site was contacted, so:

I want to create some flowscript which passes variables to an external site, (https://www.externalsite.com/test.asp?contiuation-id=xxx, var1=x,var2=x) for example, gets a response back from the external site (http://www.mysite.com/continuation-id/value-returned), and based on the response sent back does something else following the initial call to the external site. How do I do this in flowscript? 

So what i'm thinking is something like:

function getResults() {


if (value-returned == 'true') {
do this
}else{
do this
}
}

How do I get back to the point after cocoon.redirectTo() using the returned continuation-id?

thanks in advance

Andrew

Reply via email to