We have this method of creating an order then we call the register with the order id thar is returned, and register comes up but without an order in it and no order is in the system with that id, any reason why it's not working?
Order mOrder= orderConnector.createOrder(new Order()); LineItem myLineItem = new LineItem(); myLineItem.setPrice(Long.parseLong(totalPrice)); orderConnector.addCustomLineItem(mOrder.getId(), myLineItem, false); orderConnector.updateOrder(mOrder); orderId = mOrder.getId();