Loading...

RE: Problem sending the result of an Action as an HTTP parameter

RE: Problem sending the result of an Action as an HTTP parameter

#7147
Anonymous
Anonymous
Participant

Hi

I would like to give you an example to answer your question:

I have a stored procedure that insert an item into a DB, then return 1; and then I configure it to qSIListForm, you will see there a readonly “RETURN_VALUE” in the catalog setting when you configure the operation setting. this is the return value form DB, you will need to sue it later. And then I add two actions in one custom action setting, one is trigger the store procedure, I set the action name is “Insert”, then I add a GoToURL action, and add one Parameter: Source: ResuleFormAction; Source Name: “Insert.OutParameter.RETURN_VALUE”; Name: “name”. you should notice the Source Name setting, “Insert” is the previous action’s name, the “RETURN_VAULE” is the return value that you set in the catalog setting. after that, the GoToURL can get the parameter after the previous action finish. Something like: http://test.com?name=1