Menu
  • HOME
  • TAGS

Redirect with post data - WITHOUT query string

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++)...

Worldpay Notification on Mobile

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...

Magento 1.8.0.0 - Worldpay payment response receiving 301 error

php,magento,redirect,response,worldpay

If anyone was wondering, we fixed this by upgrading the installation from 1.8.0.0 to the latest Magento 1.9.1.1 with all security patches.