|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Do worldpay have a redirect parameters which is the same as paydollar?
world pay parameter:
http://support.worldpay.com/kb/integration_guides/junior/integration/help/appendicies/sjig_10100.html callback: http://support.worldpay.com/kb/reference/faqs/callback_faqs.html#what_is_returned ------------------------------------------------- Hi everyone, I have a question about worldpay. Take paydollar as an example, when we process transaction, there is a cancel/fail/ redirect link which can be customerized in our form: Here is an example of a form which will be sumbitted to paydollar: ************************** <form name="paydollarfrm" method="post" action="https://www.paydollar.com/b2c2/eng/payment/payForm.jsp"> <input type="hidden" name="merchantId" value="1234"> <input type="hidden" name="amount" value="100.00"> <input type="hidden" name="orderRef" value="54895"> <input type="hidden" name="currCode" value="344"> <input type="hidden" name="lang" value="E"> <input type="hidden" name="successUrl" value="http://www.footballforlife.org/index_shopcart_mer_thx.php"> <input type="hidden" name="failUrl" value="http://www.footballforlife.org/index_mer_paydollar_fail.php"> <input type="hidden" name="cancelUrl" value="http://www.footballforlife.org/index_mer_paydollar_cancel.php"> <INPUT TYPE="SUBMIT" value="Credit Card Payment"> </FORM> ************************** And my question is, is world-pay also have the successUrl, failUrl, cancelUrl parameters? Here is the other example which will be submit to world-pay, here are just some of the parameters in the FORM: ************************** <INPUT TYPE="HIDDEN" NAME="MC_ORDERID" VALUE="5"> <!--<INPUT TYPE="HIDDEN" NAME="MC_RETURNLINK" VALUE="http://roamerchan.tradebig.com/index_eshop_co_worldpay_thx.php">--> <INPUT TYPE="HIDDEN" NAME="MC_SITELINK" VALUE="roamerchan.tradebig.com"> <INPUT TYPE="HIDDEN" NAME="MC_callback" VALUE="roamerchan.tradebig.com/index_eshop_co_worldpay_notify.php"> |
|
#2
|
|||
|
|||
|
Worldpay parameters
I think most of the payment gateway company are following the same method to do. For WorldPay I can give you an example as below:
<form action="WorldPay_URL" method=POST> <input type=hidden name="instId" value="As quoted in your Integration Pack"> <input type=hidden name="cartId" value=" Your own reference for this purchase "> <input type=hidden name="amount" value="25.35"> <input type=hidden name="currency" value="GBP"> <input type=hidden name="desc" value="Socks, Black cotton"> <input type=hidden name="testMode" value="100"> <input type=submit value="Buy This"> </form> Another company I had experience with is PaymentAsia and they have very similar parameters to Paydollar as well. As shown below: <form name="payFormCcard" method="post" action=” PAYMENTASIA_URL”> <input type="hidden" name="merchantId" value="1"> <input type="hidden" name="amount" value="3000.0" > <input type="hidden" name="orderRef" value="000000000014"> <input type="hidden" name="currCode" value="344" > <input type="hidden" name="successUrl" value="MERHCHANT_SUCCESSFUL_URL"> <input type="hidden" name="failUrl" value="MERHCHANT_FAIL_URL"> <input type="hidden" name="cancelUrl" value="MERCHANT_CANCEL_URL"> <input type="hidden" name="payType" value="N"> <input type="hidden" name="lang" value="E"> <input type="submit" name="submit"> </form> As you can see there ain't too much different between all the examples. The idea is simple form-posting on values of different parameters. Get a spec. from them and you will be able to DIY! Hope it helps! Benny p.s. I cant post the URL here as i am a new member but you should be able to tell the logic |
|
#3
|
||||
|
||||
|
It is most certainly possible.
I have pulled this off myself. Check here: http://support.worldpay.com/kb/inte.../sjig_5120.html I have to admit I don't like worldpays CMS too much.
__________________
---| The Universe| |
|
#4
|
|||
|
|||
|
Quote:
I agree with you. The Worldpay CMS only looks good on the login page... ![]() |
![]() |
| Viewing: Dev Shed Forums > Web Site Management > Development Software > Do worldpay have a redirect parameters which is the same as paydollar? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|