I'm using Sitecore 7.2 and Commerce Server 11.0. When I ran below code to create a cart:
var cartServiceProvider = new CartServiceProvider();
// Create the request.
var createCartRequest = new CreateOrResumeCartRequest("ShopName", "UserID");
// Call the service provider to get the cart
var cart = cartServiceProvider.CreateOrResumeCart(createCartRequest).Cart;
then I got error: Could not get pipeline: commerce.carts.createOrResumeCart (domain: )
Anyone know how to fix that?
There is the following piece of code and explanation in the \App_Config\Include\CommerceServer\CommerceServer.Connectors.Carts.config
I guess this explains the exception.