Search found 436 matches

by jguengerich
Tue Jan 10, 2017 8:53 am
Forum: AbleCommerce GOLD
Topic: Strange behavior when setting or changing encryption key
Replies: 0
Views: 23991

Strange behavior when setting or changing encryption key

Using AbleCommerce GOLD VERSION: 7.0.92.9266 Release Label: GoldR12SR1 I was testing the recryption fix mentioned towards the end of this thread: http://forums.ablecommerce.com/viewtopic.php?f=65&t=18580 . I changed the source code for SaveRecryptedData and recompiled. Then (on our test server) I tr...
by jguengerich
Mon Jan 09, 2017 3:48 am
Forum: AbleCommerce GOLD
Topic: Order Manager search feature
Replies: 5
Views: 4621

Re: Order Manager search feature

I have orders with Canada as the country, and I do not get any results when I search for Canada in the billing info. I haven't had time to debug it. I am using the SQL search provider. Perhaps it is only working correctly for the Lucene or Full-Text Search (SQL Server) provider?
by jguengerich
Wed Oct 26, 2016 6:12 am
Forum: AbleCommerce GOLD
Topic: Built in Contact Us control DMARC issue?
Replies: 9
Views: 8906

Re: Built in Contact Us control DMARC issue?

Oops, I've been using a different programming language that uses 1-based indices instead of 0-based.

That one line should be:

Code: Select all

mailMessage.From = mailMessage.To[0];
by jguengerich
Wed Oct 26, 2016 4:35 am
Forum: AbleCommerce GOLD
Topic: Built in Contact Us control DMARC issue?
Replies: 9
Views: 8906

Re: Built in Contact Us control DMARC issue?

I don't know if setting the from address to the store address and setting the reply to address to the customer's address will help, but I think this is how you would do it (not tested - we're redirecting to a contact us page on our main site): In ConLib/ContactUs.ascx.cs, find the following line in ...
by jguengerich
Mon Oct 24, 2016 8:35 am
Forum: AbleCommerce GOLD
Topic: Email issues in iOS 10 Mail App
Replies: 11
Views: 12682

Re: Email issues in iOS 10 Mail App

It sounds like you were able to resolve the issues, but just FYI: The "About This Update" notes on iOS 10.1 say: Fixes an issue that caused certain Mail messages to be reformatted with very small text. Fixes an issue that caused some HTML email to be formatted incorrectly. It does not fix the issue ...
by jguengerich
Thu Oct 20, 2016 11:19 am
Forum: AbleCommerce GOLD
Topic: Built in Contact Us control DMARC issue?
Replies: 9
Views: 8906

Re: Built in Contact Us control DMARC issue?

Katie,
I think he's referring to the email that the Conlib/ContactUs.ascx.cs code sends to the store in SendContactUsEmail(), not the confirmation sent to the user in SendConfirmationEmail().
by jguengerich
Mon Oct 17, 2016 2:50 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

My opinion: It would be OK to have the Entity code delete the custom fields, just like it adds/updates them. That way, anything a developer would put in the table using a "fake" TableName and/or unused ForeignKeyId would remain, but nothing would be orphaned. There could be a prominent comment in th...
by jguengerich
Thu Oct 13, 2016 2:57 am
Forum: AbleCommerce GOLD
Topic: waiting to ship?
Replies: 4
Views: 5096

Re: waiting to ship?

Why not use this.Order.OrderStatus.Name?
EDIT: Oops, that would be the order status, not shipping status. Sorry :) .
by jguengerich
Wed Oct 12, 2016 3:20 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

I can easily add code to do it, I just think if the Admin UI is going to provide a way to delete orders, it should have the code in there to delete the custom fields too. I guess it isn't real important because there aren't very many scenarios where you'd want to delete an order on a live site, but ...
by jguengerich
Tue Oct 11, 2016 8:43 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

I noticed something else related to this: If an order is deleted (on admin/orders/default.aspx, select the order, choose Delete from the drop-down at the bottom, click GO), the related records are not removed from the ac_CustomFields table.
by jguengerich
Tue Oct 11, 2016 8:36 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

Thanks, that woks. I had tried "unproxying" before based on your suggestion in the other thread, but I did it after I had already added values to the ExtendedFields (I think that was the difference anyway; whatever it was I tried didn't work in any case). I did have to modify your code a little; I t...
by jguengerich
Tue Oct 11, 2016 3:50 am
Forum: AbleCommerce GOLD
Topic: Check out programmatically
Replies: 6
Views: 7743

Re: Check out programmatically

It appears that is just a set of endpoints for CRUD operations with products. Out of the box, that is correct (R12 added Users and Orders). However, if you have purchased the AbleCommerce source, you can add you own functionality to it. I was just trying to clarify if that is what you were doing, i...
by jguengerich
Mon Oct 10, 2016 11:28 am
Forum: AbleCommerce GOLD
Topic: Check out programmatically
Replies: 6
Views: 7743

Re: Check out programmatically

When you say you've written your own web services layer, does that mean you are not customizing the CommerceBuilder.WebApi project that is part of the AbleCommerce source code?
by jguengerich
Fri Oct 07, 2016 9:50 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

I can't get your suggestion to work. I have even tried switching to LoadForCriteria instead of using LINQ. Here is my code: ICriteria agedAuthCriteria = NHibernateHelper.CreateCriteria<Order>() .CreateAlias("OrderStatus", "os", NHibernate.SqlCommand.JoinType.InnerJoin) .Add(NHibernate.Criterion.Rest...
by jguengerich
Fri Oct 07, 2016 5:30 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7288

Re: CustomFieldsManager error

Now that you mention it, I did notice that CustomFieldManager's Save was marked internal, but since I was getting this error I was trying to figure this out first. Thanks for all the information, I'll stick with the ExtendedFields workaround (assuming it works consistently - still haven't had time t...
by jguengerich
Fri Oct 07, 2016 4:14 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7288

Re: CustomFieldsManager error

I am doing this (with 'using NHibernate.Linq'): heldOrders = from order in session.Query<Order>() where order.PaymentStatusId < (int)OrderPaymentStatus.Paid && order.OrderStatus.OrderBy < invoicedStatus.OrderBy && order.OrderDate < DateTime.Now.AddDays(-5) select order; // invoicedStatus is set in c...
by jguengerich
Thu Oct 06, 2016 11:12 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7288

Re: CustomFieldsManager error

I can use the workaround for the ExtendedFields bug in the other thread, but isn't this a different bug that should be fixed also? I don't understand how GetType() can return one result for some orders and a different result for other orders. However, if this is expected, then the CustomFieldsManage...
by jguengerich
Thu Oct 06, 2016 11:01 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Re: Anyone have R12 ExtendedFields working?

That workaround is probably OK, I can do the oneOrder.Save(false, false), then immediately after that do the cast to Entity and save. I'll post an update after I have a chance to do some testing.
by jguengerich
Tue Oct 04, 2016 11:17 am
Forum: AbleCommerce GOLD
Topic: CustomFieldsManager error
Replies: 6
Views: 7288

CustomFieldsManager error

I couldn't get the ExtendedFields collection to work (see here: http://forums.ablecommerce.com/viewtopic.php?f=65&t=18937 ), so I thought I'd use CustomFieldsManager instead. I'm using R12 SR1. When I try to create a CustomFieldsManager for some orders like this: CustomFieldsManager orderCustFieldMg...
by jguengerich
Tue Oct 04, 2016 8:44 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15634

Anyone have R12 ExtendedFields working?

I am trying to use the new (to R12) ExtendedFields collection on an order. I have tried both of the following (in R12 SR1): oneOrder.ExtendedFields["MY_FIELD"] = "MY_VALUE"; oneOrder.Save(false, false); oneOrder.ExtendedFields.SetValueByField("MY_FIELD", "MY_VALUE"); oneOrder.Save(false, false); and...
by jguengerich
Mon Sep 26, 2016 11:15 am
Forum: AbleCommerce GOLD
Topic: More MasterCard changes
Replies: 12
Views: 13542

Re: More MasterCard changes

I'm not sure what they mean by cancelled, because it also says
Authorizations that are not captured should be reversed; otherwise a new processing integrity fee will be applied to the transaction.
To me, having both of those sentences implies that cancelled is something different than reversed.
by jguengerich
Wed Sep 21, 2016 4:17 am
Forum: AbleCommerce GOLD
Topic: More MasterCard changes
Replies: 12
Views: 13542

Re: More MasterCard changes

I've read through the CyberSource document several times, and I think I've come away with a different understanding each time :). I just read through it again, and I THINK that for the US region, if this new parameter is undefined (not included in the request), there is no fee. However, there would ...
by jguengerich
Mon Sep 19, 2016 10:49 am
Forum: AbleCommerce GOLD
Topic: More MasterCard changes
Replies: 12
Views: 13542

Re: More MasterCard changes

Still no more info from CyberSource, but I dug into their documentation and API SDKs today and came up with the following (Using GOLD R12 SR1, Visual Studio Professional 2013 on Windows 7 SP1 64-bit, IIS on Windows Server 2008 R2 64-bit): Download cybersource-sdk-dotnet-1.1.0.zip from here: http://w...
by jguengerich
Thu Sep 15, 2016 10:10 am
Forum: AbleCommerce GOLD
Topic: Email issues in iOS 10 Mail App
Replies: 11
Views: 12682

Re: Email issues in iOS 10 Mail App

Just discovered something interesting: When I forward (or reply) a Customer Order Notification email on iOS (9 or 10), the table and other formatting is not preserved properly, even though the original email is displayed properly. Not sure what's going on there. I do remember that when I was customi...
by jguengerich
Thu Sep 15, 2016 9:41 am
Forum: AbleCommerce GOLD
Topic: Email issues in iOS 10 Mail App
Replies: 11
Views: 12682

Re: Email issues in iOS 10 Mail App

I'm curious which templates are not showing correctly for you. The Customer Order Notification (both the default and my customized one) are displaying correctly in iOS 10 mail (tried iPhone and iPad).

EDIT: Using AC Gold R12.