KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: mtoon on March 10, 2008, 03:10:11 pm

Title: XML API for Credit Card Processing
Post by: mtoon on March 10, 2008, 03:10:11 pm
Hello there-
I just have a quick question about the postData method in the payment gateway.  It looks like the method accepts a list of paramters and manages the HTTPS post and response.  My question is, I need to send an XML packet instead of name-value pairs in the post, can this be done using the postData method or another framework method?

Thank you!
Title: Re: XML API for Credit Card Processing
Post by: ryan on March 10, 2008, 03:20:48 pm
Hi,

You have the source of postData in BaseGatewayAction.java so you can just edit it to send the data as an XML packet.
Title: Re: XML API for Credit Card Processing
Post by: mtoon on March 10, 2008, 04:21:59 pm
Thanks!  But I have a followup question.  I looked in the code and it looks like the post is being done over a standard HTTP connection.  I didn't see and SSL functionality.  Am I just reading that wrong or does BaseGatewayAction not support SSL?

Thanks again
Title: Re: XML API for Credit Card Processing
Post by: ryan on March 10, 2008, 04:40:52 pm
It should work for both HTTP and HTTPS . url.openConnection() returns a UrlConnection object. HttpUrlConnection is a subclass of that and HttpsUrlConnection is a subclass of HttpUrlConnection so although you just see  HttpUrlConnection in the code, it could actually be a HttpsUrlConnection if the url is https:// etc. etc.
Title: Re: XML API for Credit Card Processing
Post by: mtoon on March 10, 2008, 08:19:24 pm
Roger that.  Just some random feedback, your documentation as well as your design was really helpful in getting this payment processing setup.  I literally started this morning and finished this afternoon.  Thanks!
Title: Re: XML API for Credit Card Processing
Post by: ryan on March 10, 2008, 08:27:34 pm
Hi,

If it's a payment gateway that could interest others, maybe you could post it in the contributions section ?

Thx.