Search found 8 matches

by stanleyglass
Wed Dec 06, 2023 9:03 am
Forum: Installation and Setup
Topic: Connecting to multiple servers
Replies: 1
Views: 14680

Connecting to multiple servers

We have both a DEV and UAT on a single server and a PROD version on another. I need to have someone be able to get to any of those servers. I am trying to figure out how to have them listed like they are in the documentation Connecting to the Server it does not list any servers. I have tried to add ...
by stanleyglass
Mon Oct 02, 2023 10:16 am
Forum: Installation and Setup
Topic: Error with SPS and login.
Replies: 1
Views: 4119

Error with SPS and login.

We just went through an upgrade, with Softpro staff, to version 4.3.60210.149. Now when we try to use SPS to list events or subscribe to them we get the error: You have to have a profile selected to login. at SoftPro.Select.Client.SelectServer.SetCurrentUserState() in D:\a\1\s\Code\SPNet\Select\Sele...
by stanleyglass
Mon May 01, 2023 3:10 pm
Forum: Integration Development
Topic: Download Attachments
Replies: 1
Views: 3887

Download Attachments

I am looking to download an attachment from Softpro to another system. I have code that would look for any attachments, but the Path in SoftPro order looks something like this "\\4391779\Attachments\myfile_123456.pdf". How do I get the actual path or get a stream of the document so that I ...
by stanleyglass
Fri Mar 17, 2023 9:14 am
Forum: General
Topic: Security Error
Replies: 2
Views: 4304

Re: Security Error

  • Softpro Version: 4.3
  • .Net Version: 4.6 (fails in 4.6.1 as well)
  • Credentials have been checked and confirmed to be correct.
  • I also tried to remove the creds from the line

    Code: Select all

    using (var ss = new SelectServer(null, new Uri(softProServer)))
by stanleyglass
Fri Mar 17, 2023 8:04 am
Forum: General
Topic: Security Error
Replies: 2
Views: 4304

Security Error

I am setting up an API to have the communication from Softpro to our system. I subscribed to the events and they fire as they should, but when we look up the order in Softpro with our code I get the not so helpful error "Security error". If I run this on my local system I get the order. I ...
by stanleyglass
Mon Feb 27, 2023 3:44 pm
Forum: Integration Development
Topic: Task Fields on subscription
Replies: 1
Views: 3940

Task Fields on subscription

Is it possible to have Softpro return other fields in the TasksChangedEvent subscription XML? Below is a version (sensitive data removed) of it, but I would like to have another field such as Related Orders? <?xml version="1.0" encoding="utf-16"?> <TasksChangedEvent> <OrderID></O...
by stanleyglass
Fri Feb 10, 2023 11:48 am
Forum: General
Topic: Check if an order is locked.
Replies: 1
Views: 3779

Check if an order is locked.

Is there a way to see if an order is locked before I try to edit it in my code? If for any reason my code errors out and does not fully complete the order is locked or in the event I need to update a record that a user has open? var search = os.Orders.FirstOrDefault(t => t.Number == spec.BaseNumber)...
by stanleyglass
Thu Feb 02, 2023 11:09 am
Forum: Server
Topic: Content Type application/x-gzip was not supported by service
Replies: 1
Views: 3310

Content Type application/x-gzip was not supported by service

I have written a small test application to connect to Softpro from our application, but I am getting the error seen below. I have provided the simple code below as well and the reason from the TryAuthenticate. I am not sure why this error comes up as this is something that happens inside the SelectS...