We are building a custom eCommerce site (for eGov functions like licenses, permits, pay water bill, parking tickets, etc). We envision someone coming in and in one transaction pay their utility bill and parking ticket (or other things they need to pay for). While we don't have the overall flow decided yet, I am curios how others have implemented a shopping cart. Looking at some of the eCommerce packages out there, they are focusing on the whole shopping experience (product to shipping). We really just need the shopping cart as we don't deal with much with a fixed price. For instance, you request a building permit, there maybe a large process before you can actually purchase it.

Do you know of any shopping cart solutions that can integrate into a custom eCommerce site?

I am starting to look at nopCommerce right now, but am open to other options. We are using ASP.NET MVC 3. Another option would be a tutorial on a good shopping cart implementation.

Must-have features are:

  • Ability to process transactions with and without a user account.
  • Ability to either use the user in the rest of the system or use our own user account setup.
  • Integrate with First Data Global Gateway Web Service API.
  • Self-hosted and ability to fully integrate into current website design.
link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

I looked at this for reference when i built one before... http://net.tutsplus.com/tutorials/other/build-a-shopping-cart-in-aspnet/

link|improve this answer
Great resource! – Mike Wills Sep 8 '11 at 21:27
feedback

I also started to look at the MVC Music Store example.

link|improve this answer
feedback

KonaKart is excellent for integration - from your ASP.NET world you would probably want to use the SOAP interfaces.

link|improve this answer
I wrote my own. – Mike Wills Feb 1 at 14:23
feedback

KonaKart is indeed excellent for integration. You can also use JSON, jQuery for communication if those are preferred to SOAP (or RMI).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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