Changeset 8293 for main/waeup.uniben/trunk
- Timestamp:
- 27 Apr 2012, 06:31:02 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/interswitch/browser.py
r8281 r8293 36 36 from waeup.uniben.interfaces import MessageFactory as _ 37 37 38 # Interswitch test account data:39 #40 # Card Number: 627480770000000741 # Expiry Date: July 201242 # PIN: 000043 44 # Card Number: 627805000000000745 # Expiry Date: July 201246 # PIN: 000047 #48 # PAN,EXPIRY,PIN,CVV249 # 5060990330000003386,1304,0000,54350 # 5060990330000003394,1304,0000,86551 # 5060990330000003402,1304,0000,01252 # 5060990330000003410,1304,0000,73753 # 5060990330000003428,1304,0000,31054 # 5060990330000003436,1304,0000,17355 56 38 PRODUCT_ID = '57' 57 39 SITE_NAME = 'uniben-kofa.waeup.org' … … 61 43 INSTITUTION_NAME = 'Uniben' 62 44 CURRENCY = '566' 63 #QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx'64 QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx'65 #POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx'66 POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx'67 68 #HOST = 'webpay.interswitchng.com'69 HOST = 'testwebpay.interswitchng.com'70 #URL = '/paydirect/services/TransactionQueryWs.asmx'71 URL = '/test_paydirect/services/TransactionQueryWs.asmx'45 QUERY_URL = 'https://webpay.interswitchng.com/paydirect/services/TransactionQueryURL.aspx' 46 #QUERY_URL = 'https://testwebpay.interswitchng.com/test_paydirect/services/TransactionQueryURL.aspx' 47 POST_ACTION = 'https://webpay.interswitchng.com/paydirect/webpay/pay.aspx' 48 #POST_ACTION = 'https://testwebpay.interswitchng.com/test_paydirect/webpay/pay.aspx' 49 50 HOST = 'webpay.interswitchng.com' 51 #HOST = 'testwebpay.interswitchng.com' 52 URL = '/paydirect/services/TransactionQueryWs.asmx' 53 #URL = '/test_paydirect/services/TransactionQueryWs.asmx' 72 54 httplib.HTTPConnection.debuglevel = 0 73 55 … … 447 429 applicant = self.context.__parent__ 448 430 if query_interswitch(applicant, self.context, self): 449 actions_after_applicant_payment( student, self.context, self)431 actions_after_applicant_payment(applicant, self) 450 432 return 451 433
Note: See TracChangeset for help on using the changeset viewer.