c#,asp.net-mvc,http,redirect,worldpay
WorldPay support have provided me with a solution. Digging through their source I can see that they're doing what [I suspect] husnain_sys was suggesting: var formBuilder = new StringBuilder(); formBuilder.AppendLine("<html><head>"); formBuilder.AppendLineFormat("</head><body onload=\"document.{0}.submit()\">", formName); formBuilder.AppendLineFormat("<form name=\"{0}\" method=\"{1}\" action=\"{2}\" >", formName, Method.ToString(), Url); for (int i = 0; i < _inputValues.Keys.Count; i++)...
android,ios,rest,paypal-ipn,worldpay
You can get WorldPay to send both a POST message to your server, and an email to the customer. Both are documented here. The first is set up on the WorldPay server (and so the destination script is fixed) and the second is requested by the mobile app’s connection to...