Search found 25 matches

by dn_garza
Tue Mar 05, 2024 5:57 pm
Forum: Server
Topic: Order is locked by editing user System
Replies: 2
Views: 1369

Re: Order is locked by editing user System

Thanks so much!
by dn_garza
Tue Mar 05, 2024 1:05 am
Forum: Server
Topic: Order is locked by editing user System
Replies: 2
Views: 1369

Order is locked by editing user System

I'm using using (RuntimeContext.Impersonate()) to create orders in a server package. The orders are created successfully, however when I try to access them on SoftPro Select, I get the following error in the screenshot. Is there something I need to do after creating the orders to release the orders ...
by dn_garza
Fri Mar 01, 2024 6:51 pm
Forum: Server
Topic: Failed to validate the package license. The license key is missing.
Replies: 3
Views: 851

Re: Failed to validate the package license. The license key is missing.

This and the fact that I forgot to change the build type to embedded resource fixed it. Thanks, again.
by dn_garza
Fri Mar 01, 2024 6:10 pm
Forum: Server
Topic: Failed to validate the package license. The license key is missing.
Replies: 3
Views: 851

Re: Failed to validate the package license. The license key is missing.

This is a server package. I'll remove RegisterPackage and try again. Thanks
by dn_garza
Fri Mar 01, 2024 12:50 am
Forum: Server
Topic: Failed to validate the package license. The license key is missing.
Replies: 3
Views: 851

Failed to validate the package license. The license key is missing.

I have the below code and the PackageLicense.lic at the root level as well as in the Resources folder, however I am getting the error message: Failed to validate the package license. The license key is missing. I originally tried with only the PackageLicense.lic in the Resources folder and it didn't...
by dn_garza
Fri Mar 01, 2024 12:42 am
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 1120

Re: CurrentSessionToken is null

Thanks, this worked perfectly!
by dn_garza
Tue Feb 27, 2024 11:27 am
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 1120

Re: CurrentSessionToken is null

Just for clarification, line 97 is the using statement where things are breaking.
by dn_garza
Tue Feb 27, 2024 11:26 am
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 1120

Re: CurrentSessionToken is null

This is in a server package that I'm running in debug mode using (RuntimeContext.Impersonate(RuntimeContext.CurrentSessionToken, true)) { // Set default profile. IProfileManager pm = GetService<IProfileManager>(); IProfileInfo pi = pm.Profiles.Where(t => t.Name == "Default").FirstOrDefault...
by dn_garza
Wed Feb 21, 2024 2:17 pm
Forum: Server
Topic: CurrentSessionToken is null
Replies: 6
Views: 1120

CurrentSessionToken is null

System.NullReferenceException: 'Object reference not set to an instance of an object.' SoftPro.Select.Service.Runtime.RuntimeContext.CurrentSessionToken.get returned null. In previous work sessions, CurrentSessionToken was not null. I'm not sure what caused it to become null. Is there anything that ...
by dn_garza
Wed Feb 21, 2024 12:48 am
Forum: Server
Topic: Registering a package
Replies: 2
Views: 1112

Re: Registering a package

Thanks, Bob! That worked.