Search found 1290 matches

by BobRichards
Mon Feb 26, 2024 11:48 pm
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 42

Re: CurrentSessionToken is null

In order to help, please provide the code for the area that is failing and the complete call stack. Thanks.
by BobRichards
Mon Feb 19, 2024 9:08 pm
Forum: Server
Topic: Registering a package
Replies: 2
Views: 15

Re: Registering a package

If you look up the attributes in the Select SDK Help file (SelectSdk.chm), you will see that all three are defined in SoftPro.Select.Shell.dll in the namespace SoftPro.Select.Shell.Registration . Add the DLL as a project reference and add "using SoftPro.Select.Shell.Registration;" to the t...
by BobRichards
Mon Feb 19, 2024 7:45 pm
Forum: Automation Code Snippets
Topic: Corrupted Code Snippets for Task Automation
Replies: 4
Views: 53

Re: Corrupted Code Snippets for Task Automation

I do not see anything wrong with the code you wrote. Looks good. You need to track down additional information about when an error occurs. Can you look (or have an admin look) at the Event Log for the server? You should find an event for the error. Also look at any events within a second or so of th...
by BobRichards
Mon Feb 12, 2024 10:38 am
Forum: Server
Topic: Setting State on a new order
Replies: 1
Views: 16

Re: Setting State on a new order

States (like several others types) inherit from IValueType. // Get IState object. IEnumManager enumMgr = ss.GetService<IEnumManager>(); IState state = enumMgr.GetEnum<IState>().Values.Where(t => t.Code == "TX").First(); ... o.SettlementLoction.Place.Address.State = state;
by BobRichards
Fri Feb 09, 2024 12:16 pm
Forum: ReadyDoc Development
Topic: Return Ownership Profile Name
Replies: 4
Views: 117

Re: Return Ownership Profile Name

I asked a colleague in the documents department to take a look at your problem. He agreed with you that {{Order.OwnershipProfile.Name}} does not exist. He created some code to help you get the value. If you have any issues, please check back with us with the symptoms. <VAR $ProfileName (""...
by BobRichards
Tue Feb 06, 2024 5:20 pm
Forum: ReadyDoc Development
Topic: Return Ownership Profile Name
Replies: 4
Views: 117

Re: Return Ownership Profile Name

Have you tried: {{Order.OwnershipProfile.Name}}
by BobRichards
Wed Jan 31, 2024 3:57 pm
Forum: Server
Topic: Creating an order
Replies: 7
Views: 1454

Re: Creating an order

To CREATE an order, you must do it with user credentials. Most people have a fixed user set aside for this function. This allows the user to have whatever permissions are needed to create the order. You can also change the user's profile or just the order's ownership profile on-the-fly if desired.
by BobRichards
Wed Jan 31, 2024 12:28 pm
Forum: Server
Topic: Creating an order
Replies: 7
Views: 1454

Re: Creating an order

Orders should typically be created in a shell or standalone package context like is demonstrated in the SDK in Standalone Application Development topic "Create an Order". This is because the user that is active in the server does not have all the information necessary to create an order. F...
by BobRichards
Thu Jan 18, 2024 4:52 pm
Forum: Server
Topic: Issue creating a scheduled task
Replies: 3
Views: 1039

Re: Issue creating a scheduled task

Please post the source code and exception call stack.
by BobRichards
Thu Jan 18, 2024 4:42 pm
Forum: Server
Topic: Creating an order
Replies: 7
Views: 1454

Re: Creating an order

It appears that your call to get the IOrderStore service failed and `os` is null. Make sure you are using the service locator from SelectServer - not from a shell or standalone application environment. These are very different collections of services and the IOrderStore is only available from a serv...