Search found 13 matches

by cbentley
Mon Feb 29, 2016 9:36 am
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1386

Re: OpenOrder Object reference not set to an instance of an

Is there anything I can try or information I can provide that may help? I continue to see these errors a few times per week. Thanks.
by cbentley
Thu Feb 11, 2016 9:33 am
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1386

Re: OpenOrder Object reference not set to an instance of an

I can open the order in the SPS client with no problem.
by cbentley
Tue Feb 09, 2016 12:07 pm
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1386

Re: OpenOrder Object reference not set to an instance of an

Hi Bob, SPSelectService is a utility class with convenience functions. You are right, I don't need it a second time. The second instance can be replaced with the first. This problem started 12/10/15. Since 12/10/15, this section of code has opened and updated 1133 orders and failed on 25. This has b...
by cbentley
Fri Feb 05, 2016 12:17 pm
Forum: Integration Development
Topic: OpenOrder Object reference not set to an instance of an obje
Replies: 9
Views: 1386

OpenOrder Object reference not set to an instance of an obje

I am able to open hundreds of orders monthly and perform updates. Recently, I have a problem opening a some orders. When the OpenOrder method is called, I get an exception from within the API "Object Reference not set to an instance of an object". The below code is how I open orders. And b...
by cbentley
Wed Feb 04, 2015 6:36 pm
Forum: Integration Development
Topic: Order Locked due to server connection failure
Replies: 3
Views: 683

Re: Order Locked due to server connection failure

I have seen locks auto-resolve, as you have mentioned. However, the lock today persisted for several hours until we ran a script provided by your helpdesk. It was a delete from core.Lock on the SelectDB. The issue is resolved. Thank you.
by cbentley
Wed Feb 04, 2015 2:32 pm
Forum: Integration Development
Topic: Order Locked due to server connection failure
Replies: 3
Views: 683

Order Locked due to server connection failure

I opened an order for edit via OpenOrder(). While processing it, the server lost connection with the SPS server. This means I was unable to call CloseOrder(). Now the order is locked and I cannot open it again. Here is the error I'm referring to: System.InvalidOperationException: SoftPro Select cann...
by cbentley
Wed Nov 19, 2014 9:26 am
Forum: Shell (User Interface)
Topic: shell package registration - nothing happens
Replies: 1
Views: 693

Re: shell package registration - nothing happens

I found the EXP hive here and my DLL is listed.
HKLM\SOFTWARE\Wow6432Node\SoftPro\Select\3.0Exp
Now that I found that it did do some work, I will continue looking for the answer.
Thanks,
by cbentley
Tue Nov 18, 2014 4:33 pm
Forum: Shell (User Interface)
Topic: shell package registration - nothing happens
Replies: 1
Views: 693

shell package registration - nothing happens

I created a new shell package using the VS2010 template. I did not alter the package, except to change the assembly name and sign the assembly. I ran the register and setup command. There were no messages returned. It appears nothing happened. I look for the registry keys and there are none there. I...
by cbentley
Fri Nov 14, 2014 3:48 pm
Forum: ProForm (Order Tracking)
Topic: Creating a LoanPolicy
Replies: 3
Views: 3625

Re: Creating a LoanPolicy

I understand now, it's working. Thank you. //Title Exception dynamic title = o.Title; IList ticalcs = (IList)title.TitleInsuranceCalculations; dynamic tic = ticalcs[0]; tic.PolicyType = PolicyType.Loan; dynamic lp = tic.LoanPolicy; //Add Exception IList exceptions = (IList)lp.Exceptions; dynamic ex1...