Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I am trying to redirect the user to DPS for payment during a custom workflow.
I have the code with no errors, but the redirect doesnt apply.
Is this something that is possible or something that I will need to do on the client side?
public override WorkflowExecutionStatus Execute(Record record, RecordEventArgs e) { /* various dps operations redacted */ HttpContext.Current.Response.Redirect(returnUrl); return WorkflowExecutionStatus.Completed; }
I've come up with a solution to just store the redirect in a session variable and add middleware that will redirect the user.
This works pretty well but would still like to hear other ideas.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Redirect to DPS in a WorkFlow
I am trying to redirect the user to DPS for payment during a custom workflow.
I have the code with no errors, but the redirect doesnt apply.
Is this something that is possible or something that I will need to do on the client side?
I've come up with a solution to just store the redirect in a session variable and add middleware that will redirect the user.
This works pretty well but would still like to hear other ideas.
is working on a reply...