Search found 1290 matches

by BobRichards
Mon Jan 23, 2017 9:59 am
Forum: Integration Development
Topic: msi for dll
Replies: 1
Views: 611

Re: msi for dll

The method to execute a command line operation should be available in your installer vendor's documentation. As for the shell package (as described in the SDK in topic How-To/Shell Package Development/Register/Deploy a Package), the installer should drop it in the SoftPro Select folder and then regi...
by BobRichards
Fri Jan 20, 2017 10:15 pm
Forum: Integration Development
Topic: Getting order from Register TransactionEvent
Replies: 8
Views: 1143

Re: Getting order from Register TransactionEvent

Which transaction event?
by BobRichards
Tue Jan 17, 2017 11:07 am
Forum: Custom Order Rules
Topic: Looping through Commitment Exceptions looking for text
Replies: 5
Views: 1829

Re: Looping through Commitment Exceptions looking for text

It looks interesting! Retrieving text from an RTF field has always been a pain. However, I cannot endorse this code on behalf of SoftPro Select since I have no experience with it. Let me know how it goes.
by BobRichards
Mon Jan 16, 2017 6:27 pm
Forum: Integration Development
Topic: Recreating an existing Shell package from scratch
Replies: 3
Views: 699

Re: Recreating an existing Shell package from scratch

It appears the the package registry settings are not correct. In MergeCommandTables(), Select will load the compiled CTD files that are embedded in the packages listed in registry at SoftPro/Select/x.x/Commands. It seems that you have an entry (left over from your old package) in this hive. You prob...
by BobRichards
Mon Jan 16, 2017 5:57 pm
Forum: Custom Order Rules
Topic: Looping through Commitment Exceptions looking for text
Replies: 5
Views: 1829

Re: Looping through Commitment Exceptions looking for text

Please don't use any objects in the SoftPro.Select.Controls namespace in Custom Order Rules! It will create execution errors since these libraries don't exist on the mid-tier and the orders are opened by mid-tiers.
by BobRichards
Mon Jan 16, 2017 12:38 pm
Forum: Installation and Setup
Topic: Changing the port of the server
Replies: 1
Views: 1317

Re: Changing the port of the server

Set the desired port from the SoftPro Select Services MMC then restart all the servers. Open SoftPro Select --> SoftPro Select Services from the start menu Select a server in "Pools" or "Computers" and click Properties Change Network Port to desired number and Apply Restart all s...
by BobRichards
Tue Jan 10, 2017 3:32 pm
Forum: Integration Development
Topic: Date Converting automagically after being set in API
Replies: 1
Views: 650

Re: Date Converting automagically after being set in API

What is the DateTimeStyles value for commitmentDateTime? See the SDK topic Select Concepts/Why does SoftPro use UTC time? to set the DateTime fomat value.
by BobRichards
Mon Jan 09, 2017 4:41 pm
Forum: Server
Topic: MSMQ and notification
Replies: 1
Views: 3201

Re: MSMQ and notification

Have you ever succeeded in getting an an MSMQ message transferred in your network -- with a diagnostic tool perhaps? The address formats that I see on Google lead me to the thought that you should remove the leading "\\" characters from the "<Address>" element. Let me know if tha...
by BobRichards
Fri Jan 06, 2017 11:45 am
Forum: Custom Order Rules
Topic: C# (Nothing) String Reference
Replies: 4
Views: 1203

Re: C# (Nothing) String Reference

Sorry if this doesn't quite answer the question, but it is a little confusing. It also looks like you want a C# language answer?? If so then in the future, please post to the Integration Development forum. 1. When testing string fields for null or empty string, use String.IsNullOrEmpty(). It will re...
by BobRichards
Fri Jan 06, 2017 10:45 am
Forum: Integration Development
Topic: How do I audit an Overlay Order action?
Replies: 3
Views: 796

Re: How do I audit an Overlay Order action?

There are two sources of information - The first is if you are just concerned with template operations: Open the order from the OrderStore then examine the order TemplateHistory collection. There will be an entry for each operation with an OverlayAction of: OnOrderCreation - Loaded during initial or...