Development Software
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb Site ManagementDevelopment Software

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old November 6th, 2006, 10:26 PM
roamer's Avatar
roamer roamer is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2004
Location: Hong Kong
Posts: 266 roamer User rank is Corporal (100 - 500 Reputation Level)roamer User rank is Corporal (100 - 500 Reputation Level)roamer User rank is Corporal (100 - 500 Reputation Level)roamer User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 17 h 56 m 29 sec
Reputation Power: 6
Send a message via ICQ to roamer Send a message via MSN to roamer
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">

Reply With Quote
  #2  
Old October 15th, 2007, 06:05 AM
bennyL bennyL is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Posts: 3 bennyL User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 32 m 3 sec
Reputation Power: 0
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

Reply With Quote
  #3  
Old October 15th, 2007, 06:52 AM
benno32's Avatar
benno32 benno32 is offline
/*
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2007
Posts: 498 benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level)benno32 User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Week 3 Days 33 m 39 sec
Reputation Power: 391
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|

Reply With Quote
  #4  
Old October 16th, 2007, 02:01 AM
bennyL bennyL is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Posts: 3 bennyL User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 32 m 3 sec
Reputation Power: 0
Quote:
Originally Posted by benno32
It is most certainly possible.



I have to admit I don't like worldpays CMS too much.


I agree with you. The Worldpay CMS only looks good on the login page...

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb Site ManagementDevelopment Software > Do worldpay have a redirect parameters which is the same as paydollar?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway
Stay green...Green IT