an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > Orderpipeline in "web" mode...how to ...
Last Post 11/27/2009 2:12:36 AM By Applied. 2 replies.
11/26/2009 11:34:30 AM
Applied
Posts: 93
Joined: 9/18/2009
Orderpipeline in "web" mode...how to ensure it is working
Hi. I have followed the instructions to set up OrderPipeLine within the web site (copied all dll files etc). There is no OPL service running.
 
I then tried the Bulk Import using the example import file.
 
However, nothing seems to happen.
 
How do I know if the OrderPipeLine process has actually tried to do anything?
 
Also, if the import file contains categories that do not exist, does it add those, or does it expect the category to exist and add products only to existing categories?
 
Thanks.
 
11/26/2009 3:22:54 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Orderpipeline in "web" mode...how to ensure it is working
You can set breakpoint to check if the code gets called. I think it's probably due to wrong configuration. Check if you have the following line defined in your web.config.
 
    <taskConfiguration defaultProvider="">
        <providers>
            <add name="BulkImport" type="DotShoppingCart.Commercial.OrderPipeline.BulkImportTaskProvider, DotShoppingCart.Commercial.OrderPipeline" taskRunInterval="5" />
        </providers>
    </taskConfiguration>
 
DotShoppingCart will create categories if they don't exist.
 
DotShoppingCart Staff
11/27/2009 2:12:36 AM
Applied
Posts: 93
Joined: 9/18/2009
Re: Orderpipeline in &quot;web&quot; mode...how to ensure it is working
I did not have that web.config line, as I did not see any reference to it in the install document. I will add that in and try again.