Search found 17 matches

by mmregan
Fri Sep 24, 2021 1:13 pm
Forum: Shell (User Interface)
Topic: Select.exe /Setup
Replies: 5
Views: 3058

Re: Select.exe /Setup

Detailed Description of the issue: When select.exe /setup is run by a user from a Windows scheduled task or a script running in the background (i.e. non-interactively), Select.exe crashes. The crash happens with the SYSTEM user, a local user who belongs to the administrators group, or a user who is ...
by mmregan
Sun Sep 19, 2021 8:57 pm
Forum: Shell (User Interface)
Topic: Select.exe /Setup
Replies: 5
Views: 3058

Re: Select.exe /Setup

4.3.41
by mmregan
Fri Sep 17, 2021 11:03 pm
Forum: Shell (User Interface)
Topic: Select.exe /Setup
Replies: 5
Views: 3058

Select.exe /Setup

As part of registering a shell package with SPS, it is well documented that one must run "select.exe /setup" to build a comprehensive command table. Unfortunately, we are running into problems trying to run this command as the Windows SYSTEM user in Windows 10. The error we run into is bel...
by mmregan
Tue May 18, 2021 6:04 pm
Forum: Shell (User Interface)
Topic: Settlement Location - Settlement Location Type
Replies: 2
Views: 2368

Re: Settlement Location - Settlement Location Type

Thank you @BobRichards, glad I did not spend more time trying to fight this! Appreciate you submitting the issue to R&D.

Great guidance on setting the SettlementLocation.Place
by mmregan
Mon May 17, 2021 9:59 am
Forum: Shell (User Interface)
Topic: Settlement Location - Settlement Location Type
Replies: 2
Views: 2368

Settlement Location - Settlement Location Type

On the Order Information screen in SPS there is a Settlement Location. It includes a Settlement Location Type radio button, backed by the SettlementLocationType enum values of Contact, Property, Other. I am attempting to programmatically alter the SettlementLocation using the API while the order is ...
by mmregan
Sun Aug 02, 2020 8:09 pm
Forum: Server
Topic: Error Posting Wires in Server Package
Replies: 1
Views: 2584

Error Posting Wires in Server Package

We wrote a custom service package that programmatically posts wires (that already exist as pending items FYI) using the ITransactionManager.ApplyChanges (after getting an existing transaction from the transaction manager). We are updating the transaction’s status and a few other fields, as shown her...
by mmregan
Thu Feb 28, 2019 12:18 pm
Forum: General
Topic: Add Ledger Note
Replies: 1
Views: 1279

Add Ledger Note

I am trying to use the API to add a Ledger Note. Using the SDK reference, I have attempted the following: private void CreateLedgerNote() { dynamic dynamicOrder = this.workingMasterOrder as dynamic; SelectServer sps = ServiceContext.GetService<SelectServer>(); ILedgersManager lm = sps.GetService<ILe...
by mmregan
Thu Feb 05, 2015 1:49 am
Forum: Integration Development
Topic: Running Scheduled Tasks in Service Package
Replies: 3
Views: 1128

Running Scheduled Tasks in Service Package

I would like to have my custom Select Service Package do something repeatedly on a schedule. Based on the SDK documentation it seems like SoftPro.Select.Service.Scheduler and/or SoftPro.Select.Service.Tasks will provide this type of behavior. Which, if either, should I be looking at and if so how do...
by mmregan
Thu Mar 13, 2014 12:59 pm
Forum: Integration Development
Topic: Event Subscription
Replies: 11
Views: 1439

Re: Event Subscription

Thanks John. Seems not only did I have the namespace address wrong, but several of the attributes/elements changed as well. Final XML that led to a successful subscription: <Subscriptions xmlns="http://schemas.softprocorp.com/select/notifications/eventing/2008/04"> <Subscription event=&quo...
by mmregan
Tue Mar 11, 2014 6:22 pm
Forum: Integration Development
Topic: Error Saving Order
Replies: 4
Views: 773

Re: Error Saving Order

You need to call GetMessages on the strongly typed IOrder reference, not on your dynamic order reference.