Search found 14 matches
- Tue Dec 23, 2008 4:17 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: AbleCommerce multi-store question
- Replies: 9
- Views: 5838
Re: AbleCommerce multi-store question
yes, that is correct
- Thu Dec 18, 2008 4:19 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: AbleCommerce multi-store question
- Replies: 9
- Views: 5838
Re: AbleCommerce multi-store question
Just for people managing the store and lets assume that the products are not the same.
Thanks,
-Richard.
Thanks,
-Richard.
- Mon Dec 15, 2008 5:41 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: AbleCommerce multi-store question
- Replies: 9
- Views: 5838
Re: AbleCommerce multi-store question
If that is the case, is it possible to write something to achieve what I am looking for? (a single login page for two different stores)
If so, what section of the API/Code should I be looking at?
If so, what section of the API/Code should I be looking at?
- Thu Dec 11, 2008 5:59 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: AbleCommerce multi-store question
- Replies: 9
- Views: 5838
Re: AbleCommerce multi-store question
let's assume the first scenario; two stores, two databases.
Does this mean each database has it own authentication (ac_users)?
-Richard
Does this mean each database has it own authentication (ac_users)?
-Richard
- Thu Dec 11, 2008 4:26 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: AbleCommerce multi-store question
- Replies: 9
- Views: 5838
AbleCommerce multi-store question
Say I have a client that has two stores store1.com and store2.com.
Can Able handle user security so Bob can mange store1.com, but not store2.com and Sandy can manage store2.com and not store1.com?
If so, can someone explain the setup?
Thanks,
-Richard.
Can Able handle user security so Bob can mange store1.com, but not store2.com and Sandy can manage store2.com and not store1.com?
If so, can someone explain the setup?
Thanks,
-Richard.
- Wed Jul 09, 2008 12:19 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Adding an order via an external method
- Replies: 5
- Views: 3924
Re: Adding an order via an external method
Thanks, will look into it.
-R
-R
- Tue Jul 08, 2008 11:56 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Adding an order via an external method
- Replies: 5
- Views: 3924
Re: Adding an order via an external method
The variables UserID, oDate and oAmount are supplied by an external source. For the purposes of this discussion just assume they are correct.
static void test(int UserID, DateTime oDate, decimal oAmount)
{
above code...
}
heh. yes or was just an example.
static void test(int UserID, DateTime oDate, decimal oAmount)
{
above code...
}
heh. yes or was just an example.

- Tue Jul 08, 2008 5:21 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Adding an order via an external method
- Replies: 5
- Views: 3924
Adding an order via an external method
Hello, I have need to create an order via a web service. I tried the following code for a test: Order or = new Order(); or.UserId = UserID; or.OrderDate = oDate; LSDecimal lsd = new LSDecimal(oAmount); or.TotalCharges = lsd; or.Save(); and received the following error: The INSERT statement conflicte...
- Wed Jun 11, 2008 1:28 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: find an existing category using api
- Replies: 6
- Views: 4359
Re: find an existing category using api
Perhaps I am misunderstanding your previous post. I prefer doing this all in .net. Can you query AC_Categories using the Able data classes? If so, is there any info on this object? The API reference I have doesn't seem to indicate there is one. Edit. found one of your previous posts referring to Mov...
- Wed Jun 11, 2008 11:53 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: find an existing category using api
- Replies: 6
- Views: 4359
Re: find an existing category using api
Thanks for the response. Can I piggy back off the data application block in use by AC for my database stuff? If so, can I access the encrypted connection string? Question on adding categories; Let's assume I have a hiearchy similar to the Wiki example; Books>Fiction>Mystery and all three categories ...
- Tue Jun 10, 2008 3:03 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: find an existing category using api
- Replies: 6
- Views: 4359
Re: find an existing category using api
Thanks, but I forgot to mention that this is for a webservice that will be populating categories from a third party source.
Any other ideas?
-Richard.
Any other ideas?
-Richard.
- Tue Jun 10, 2008 2:30 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: find an existing category using api
- Replies: 6
- Views: 4359
find an existing category using api
Hello, I am trying to determine if a Category exists before add to it using the API. It's unclear from the documentation on how to accomplish this. The only variables I have available for the search are Category.Name and Category.ParentID (StoreID is a given). If I have to do it via SQL, is there an...
- Mon Jun 02, 2008 7:33 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: API Help
- Replies: 2
- Views: 2576
Re: API Help
Perfect. Thank you!
- Mon Jun 02, 2008 2:24 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: API Help
- Replies: 2
- Views: 2576
API Help
Hello, I am writing a web service that needs to query order information from an AbleCommerce7 install. I have the api documentation and have written some code, but that problem I have is linking my objects to a specific able commerce store/install. Example: CommerceBuilder.Orders.Order cbOrder = new...