an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > DotShoppingCart Suite > Authorize.Net Capture and Authorization Configu...
Last Post 3/31/2009 6:04:27 PM By lukezy. 3 replies.
12/4/2008 9:50:47 AM
gersh
Posts: 5
Joined: 11/19/2008
Authorize.Net Capture and Authorization Configuration
How do you configure DSC to automatically both capture and authorize with authorize.net. Can it also tell the user when their credit card is declined?
12/5/2008 4:24:34 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Authorize.Net Capture and Authorization Configuration
Why do you want to change the default behaviour which is recommended by Visa/MC standard and most of the merchant providers? The recommeded way is only to capture the fund after the order is shipped.
 
Anyway here is how you can configure it in the software.
1) Change the action from "Authorization" to "Sale" (see yellow background below) in DotShoppingCart.Commercial.OrderPipelineService.exe.config
 
            <add name="CreditCardAuthorization" type="DotShoppingCart.Commercial.OrderPipeline.CreditCardProcessorProvider, DotShoppingCart.Commercial.OrderPipeline" action="Sale" />
 
2) Remove the yellow background line in the DSC.config
    <orderPipelineConfiguration>
        <processorConfigurations>
            <clear />
            <addname="CreditCard">
                <processors>
                    <clear />
                    <addname="OrderConfirmationEmail" />
                    <addname="CreditCardAuthorization" />
                    <addname="InventoryStockCheck" />
                    <addname="CreditCardCapture" />
                    <addname="OrderPackageAndShip" />
                    <addname="CreateGiftCertificate" />
                    <addname="OrderCompleteEmail" />
                </processors>
 
DotShoppingCart Staff
3/31/2009 5:30:09 PM
Sukantan
Posts: 4
Joined: 3/31/2009
Re: Authorize.Net Capture and Authorization Configuration
I agree, But I do not see where a SALE transaction is sent to the provider when the status of the order is marked as SHIPPED. Is that something that is supported by Dotshopping cart? Or should the store owner go to the payment provider virtual terminal to settle?
Thanks and regards
Sukanta
3/31/2009 6:04:27 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Authorize.Net Capture and Authorization Configuration
You don't mark the order status to "shipped" directly. It's done by OrderPipeline. Please watch http://www.dotshoppingcart.com/Page/DemoVideo/DemoProcessOrder.aspx to get yourself familiar with DSC.
DotShoppingCart Staff