I'm developing a cart that needs to calculate tax and am looking for a 3rd party tax service to handle the calculations.

I've used Avalara in another app, but it's somewhat miserable since I have to use the Rjb gem with their java library.

Does anyone have a recommendation for a tax service that works well with rails?

link|improve this question

40% accept rate
feedback

closed as off topic by Lix, Bill the Lizard May 3 at 13:17

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

4 Answers

I don't know what capabilities for tax calculations are in the library, but ActiveMerchant is an awesome utility for E-Commerce applications. It is well documented and in active development.

Its variety of payment processors might provide you with the calculations you need.

http://www.activemerchant.org/

link|improve this answer
feedback

For Sales tax calculation based on US Zip code, May be you can use the web service from below website, its seems to be more reliable.

https://www.taxdataservice.com

You could also test the service online there.

link|improve this answer
feedback

We use StrikeIron in our applications.

To be honest, it's not the most awesome interface to interact with (unless you really love SOAP). You still have to handle all tax logic in your application, of course, but if you need tax rates broken down by state, county, and city, it should handle your needs fairly well.

This being said, I have yet to find a tax service That Just Ties into Rails™. I'm curious to see what others will have to say in regards to this.

link|improve this answer
feedback

Has anyone tried TaxCloud?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.