Search found 54 matches

by Phil Barton
Thu Jan 03, 2019 9:08 am
Forum: Integration Development
Topic: Expected Lifetime of IRendering
Replies: 2
Views: 853

Re: Expected Lifetime of IRendering

What are the types of objects that you see being leaked? Also, along with disposing of the IRendering instance, ensure you dispose of the IRenderer instance that you receive from the IRendererFactory.Create() method.
by Phil Barton
Wed Dec 12, 2018 8:37 am
Forum: Integration Development
Topic: SelectServer in 4.3 causing issues
Replies: 1
Views: 797

Re: SelectServer in 4.3 causing issues

The Newtonsoft.Json.dll assembly is a dependency. We use version 11.0.2
by Phil Barton
Thu Nov 01, 2018 10:44 am
Forum: Integration Development
Topic: Snapsection/code access to UI fields
Replies: 8
Views: 2447

Re: Snapsection/code access to UI fields

Nothing has changed regarding the API in the past few years, other than what is documented in the release notes. A server-side package may not give you what you want because any remote call will run under the context of the user making the call. A server-side job would run under the context of the s...
by Phil Barton
Mon Aug 13, 2018 3:12 pm
Forum: Server
Topic: Do the SPS client & server support the Http Keep Alive feature ?
Replies: 1
Views: 3127

Re: Do the SPS client & server support the Http Keep Alive feature ?

Keep-Alive is automatically enabled on both the client and server. However, it should be noted that disabling this and/or modifying the timeout value is not supported.
by Phil Barton
Thu Apr 26, 2018 2:03 pm
Forum: Server
Topic: Does the SPS client perform some sort of idle "heartbeat" call back to the SPS server ?
Replies: 1
Views: 2848

Re: Does the SPS client perform some sort of idle "heartbeat" call back to the SPS server ?

The client does have a heartbeat that it sends to the server to renew its session. This happens about every 15 seconds whether the client is active or idle. If the client has experienced an interruption (i.e. temporary loss of connection to the server), it tries every 5 seconds until the connection ...
by Phil Barton
Wed Nov 15, 2017 8:24 am
Forum: General
Topic: Legal Description/RTF Format
Replies: 3
Views: 1041

Re: Legal Description/RTF Format

You could use WinForms rich text box to set the RTF text and extract the raw text like so, in C# (the 'rtf' variable is your raw rich text):

Code: Select all

   
   using(RichTextBox rtb = new RichTextBox())
   {
       rtb.Rtf = rtf;
       return rtb.Text;
   }
by Phil Barton
Fri Apr 21, 2017 1:01 pm
Forum: Integration Development
Topic: Next Available HUD/CDF line functionality
Replies: 1
Views: 731

Re: Next Available HUD/CDF line functionality

Unfortunately, there are no available API methods to perform what you want. You'll have to implement your own version of that functionality.
by Phil Barton
Wed Mar 29, 2017 2:53 pm
Forum: General
Topic: Updated SP DLLs to 4.2.41213.12 now we get Error
Replies: 14
Views: 2359

Re: Updated SP DLLs to 4.2.41213.12 now we get Error

What are the contents of the two elements in the LoaderExceptions property?
by Phil Barton
Wed Mar 29, 2017 7:13 am
Forum: General
Topic: Updated SP DLLs to 4.2.41213.12 now we get Error
Replies: 14
Views: 2359

Re: Updated SP DLLs to 4.2.41213.12 now we get Error

From the looks of it, it appears that an assembly is possibly not being found when this method queries for types. On the inner exception (the RelfectionTypeLoadException), there are two properties: LoaderExceptions and Types. The first is of type Exception[] and the second of type Type[]. These shou...
by Phil Barton
Tue Mar 28, 2017 8:31 am
Forum: General
Topic: Updated SP DLLs to 4.2.41213.12 now we get Error
Replies: 14
Views: 2359

Re: Updated SP DLLs to 4.2.41213.12 now we get Error

Can I get a bit more context information from you:

What version did you upgrade from?
Can you provide more from the code snippet so that I can try and repro this in-house?
Can you provide the stack traces from the outer and inner exceptions and/or any event viewer entries around this exception?