Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: WSI and credit card transactions

  1. #1
    Jordan is offline Member
    Join Date
    Feb 2006
    Posts
    42

    Default WSI and credit card transactions

    We have an external order fulfillment suite (written in-house).

    Is capturing a customer's credit card supported using a public interface (exposed over WSI, perhaps)? We want to Auth during the checkout, receive the order in our software, do some inventory verification, and then trigger the Capture...

    Thanks kindly,


    Jordan.
    ________
    PetiteFantasi22
    Last edited by Jordan; 08-13-2011 at 08:22 AM.

  2. #2
    Jordan is offline Member
    Join Date
    Feb 2006
    Posts
    42

    Default

    For anyone interested, here's the response I got:



    Hi Jordan,

    You can do that through the WSI OrderManagement node. If you look at the wsi.xml file in the ImportFileSample folder where you have the software installed, you can look for that node name to see how to format that. There's also the full WSI documentation in the manual at http://manual.aspdotnetstorefront.com

    Thanks,
    Scott
    ________
    grandma Cams
    Last edited by Jordan; 08-13-2011 at 08:22 AM.

  3. #3
    ssgumby is offline Senior Member
    Join Date
    Feb 2009
    Posts
    683

    Default

    I do this exact scenario. I have a local app that is used to scan orders by barcode and when it is a valid order (all items are picked) then the warehouse staff scans a barcode and it does the capture .. here is the actual code for the capture

    Code:
                StringBuilder xml = new StringBuilder();
                xml.Append("<AspDotNetStorefrontImport Verbose=\"false\">");
                xml.Append("<OrderManagement OrderNumber=\"" + orderId + "\" Action=\"Capture\" />");
                xml.Append("</AspDotNetStorefrontImport>");