ccavenue

ccavenue get payment status from response url

空扰寡人 提交于 2019-12-11 06:45:02
问题 I am using iframe approach in a .net mvc app and we are setting one return url while sending the request. My question is how can i know the payment status & ccavenue payment reference no and other payment related params from response url My retun url action is something like this [HttpGet] public ActionResult ResponseCCPayment() { //but how to read reposne params from here return Content("got response frm ccveue"); } From CCAvenue documentation i can see redirect_url CCAvenue will post the

cordova - How to integrate CCAvenue to Ionic2

蓝咒 提交于 2019-12-11 02:15:32
问题 I am new in IONIC2 and Angular2. In my application I need payment gateway of CCavenue with merchant server. Please give me steps for that Issue. 回答1: There is no official native plugin for CCAvenue yet.You have few options here. Option 1: You have to write a native Cordova plugin using CCAvenue native android/iOS SDK. Option 2: There is an unofficial plugin which is for Ionic1.Maybe you can use it with Ionic2 after some changes.Here it is. Option 3: You have to use officially supported

Correctly migrate from Python 2 md5 library to Python 3 hashlib

大城市里の小女人 提交于 2019-12-08 10:25:11
问题 I'm trying to integrate a 3rd party payment gateway ( CCAvenue ) in Django 1.11, Python 3.5.2 The reference code provided by the 3rd party uses the deprecated library md5 to encrypt texts. from Crypto.Cipher import AES import md5 def pad(data): length = 16 - (len(data) % 16) data += chr(length)*length return data def encrypt(plainText,workingKey): iv = '\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f' plainText = pad(plainText) encDigest = md5.new () encDigest.update

CCAvenue: “Error!!! in decrypting application request”

≯℡__Kan透↙ 提交于 2019-12-07 08:38:51
问题 I am trying to integrate CCAvenue Payment gateway in my iOS app developed in swift4. I am getting "Error!!! Problem in decrypting application request" I have check for answer given at: https://stackoverflow.com/a/37327122/3548469 but no luck with my case. Here is what I have tried from documents private func gettingRsaKey(completion: @escaping (_ success: Bool, _ object: AnyObject?) -> ()){ let serialQueue = DispatchQueue(label: "serialQueue", qos: .userInitiated) serialQueue.sync { print(

CCAvenue Integration in Android

偶尔善良 提交于 2019-12-06 16:49:30
问题 Nice to meet you. I am developing shopping app using parse.com as backend. I am going to integrate with Indian Payment Gateway(CCAVenue). I am integrating CCAvenue to my android app and I am doing Non-seamless integration. My merchant server is php and I am making my httppost to the GetRSA.php file kept in my merchant server. The code I am using is as below List<NameValuePair> httpParams = new ArrayList<NameValuePair>(); httpParams.add(new BasicNameValuePair("access_code", intent

cc avenue php integration not working

穿精又带淫゛_ 提交于 2019-12-06 06:50:02
问题 i m using ccavenue php integration demo file.when i fill out the merchant id and 32 bit working key and submi the data no response return. Only blank page comes with below url http://www.ccavenue.com/shopzone/cc_details.jsp i m unable to understand that whats going wrong with integration. Here is the code for the form which i m filling: <form method="post" action="checkout.php"> <table> <tr> <td>Merchant Id : </td><td><input type="text" name="Merchant_Id" value=""></td> </tr> <tr> <td>Amount

CCAvenue: “Error!!! in decrypting application request”

妖精的绣舞 提交于 2019-12-05 14:38:17
I am trying to integrate CCAvenue Payment gateway in my iOS app developed in swift4. I am getting "Error!!! Problem in decrypting application request" I have check for answer given at: https://stackoverflow.com/a/37327122/3548469 but no luck with my case. Here is what I have tried from documents private func gettingRsaKey(completion: @escaping (_ success: Bool, _ object: AnyObject?) -> ()){ let serialQueue = DispatchQueue(label: "serialQueue", qos: .userInitiated) serialQueue.sync { print("access_code=\(CC_AVENUE_ACCESSKEY)") print("order_id=\(self.orderId)") self.rsaKeyDataStr = "access_code=

How to implement CCAvenue payment gateway option [closed]

寵の児 提交于 2019-12-05 03:10:26
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . We need to implement CCAvenue payment gateway option. How can I do this using ASP.net/C#? 回答1: Please check the Integration Manual in ccavenue offical site.I hope it will help you http://world.ccavenue.com/content/works_any_shoppingcart.jsp 回答2: I have got it resolved. Yes

CCAvenue Integration in Android

浪尽此生 提交于 2019-12-04 21:26:47
Nice to meet you. I am developing shopping app using parse.com as backend. I am going to integrate with Indian Payment Gateway(CCAVenue). I am integrating CCAvenue to my android app and I am doing Non-seamless integration. My merchant server is php and I am making my httppost to the GetRSA.php file kept in my merchant server. The code I am using is as below List<NameValuePair> httpParams = new ArrayList<NameValuePair>(); httpParams.add(new BasicNameValuePair("access_code", intent.getStringExtra("access_code"))); httpParams.add(new BasicNameValuePair("order_id", intent.getStringExtra("order_id"

How to implement CCAvenue payment gateway option [closed]

不羁岁月 提交于 2019-12-03 17:22:51
We need to implement CCAvenue payment gateway option. How can I do this using ASP.net/C#? Please check the Integration Manual in ccavenue offical site.I hope it will help you http://world.ccavenue.com/content/works_any_shoppingcart.jsp I have got it resolved. Yes CCAvenue provides good support. But the person who uses asp.net forum will always look for asp.net codes and direct answers. :) I hope this will help someone. I have created two properties in code behind. One is to return checksum value and another one is to return details about the checkout items. public string CCAvenueItemList { get