Re: NTK 32K limit in TCP Receive

2020-04-10 Thread Rob Laveaux via 4D_Tech
> On 10 Apr 2020, at 18:03, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > First, the maximum size of a text variable isn't 32000 bytes anymore, which > leads me to believe this was an oversight and not a feature... :) Yes, I know. But it’s not related. It is just a convenient

Re: NTK 32K limit in TCP Receive

2020-04-10 Thread Rob Laveaux via 4D_Tech
> On 9 Apr 2020, at 20:46, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Why? :) Why not? The data that is available from the stream can be any arbitrary size. The plugin does not know upfront how many bytes are available, so it needs a limit. There is a default value, which

Re: Jumpy forms in 64-bit

2019-11-23 Thread Rob Laveaux via 4D_Tech
> On 22 Nov 2019, at 22:36, Jim Hays via 4D_Tech <4d_tech@lists.4d.com> wrote: > > We are running in v17.2 - 64bit server, 32-bit client. > We have some strange redraw with our Canvas plugin objects when we test > with 64-bit client. > They are sluggish to redraw when moving the mouse, and the

Re: 4D Web Application and SAML or OpenID Connect

2019-11-06 Thread Rob Laveaux via 4D_Tech
> On 5 Nov 2019, at 17:53, Narinder Chandi via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Has anyone done work on implementing either SAML or OpenID Connect protocol > in native 4D code for single sign-on in 4D Web Applications? I know about > 4D's work on single sign on using Active

Re: Special character euro sign in JSON string

2019-06-12 Thread Rob Laveaux via 4D_Tech
> On 12 Jun 2019, at 14:47, Piotr Chabot Stadhouders via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > So, the problem is with JSON in Oracle and WE8ISO8859P1 > Unfortunately knowing this doesn't solve my problem Hi Piotr, For data exchange JSON should be encoded in UTF-8. Any other character

Re: Printing a PDF document from 4D

2019-03-19 Thread Rob Laveaux via 4D_Tech
> On 19 Mar 2019, at 15:27, Julio Carneiro via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > @Luc Devar, QPDF, also from pluggers.nl , does not > support printing on Windows. Hi Julio, What makes you conclude that? QPDF Print Document works just fine on Windows. It is

Re: Converting _O_PLATFORM PROPERTIES to Get system info

2018-12-11 Thread Rob Laveaux via 4D_Tech
> On 11 Dec 2018, at 14:49, Drew Waddell via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Is anyone using _O_PLATFORM PROPERTIES? How do you change your code that > used the old version to the new Get system info? The osVersion contains far > more data than the previous command and I am

Re: 2 Factor Authentication

2018-09-19 Thread Rob Laveaux via 4D_Tech
> On 19 Sep 2018, at 16:59, Jim Medlen via 4D_Tech <4d_tech@lists.4d.com> wrote: > > Does anyone know of a method, plugin or component to implement 2 factor > authentication ? > > I am interested in using 2 factor authentication and generating the OTP key > URI to be used > with

Re: 2dim json arrays with scalar values

2017-07-27 Thread Rob Laveaux via 4D_Tech
> On 27 Jul 2017, at 15:43, Epperlein, Lutz (agendo) via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > OK, found it. It is possible. (To be honest, I didn't expect anything else) > > The only question is now, how do I combine the code developed using 4D's > object commands with the NTK JSON

Re: Set_Exists() function: Simple version

2017-07-17 Thread Rob Laveaux via 4D_Tech
Maybe you should take a slightly different approach here. In the JavaScript framework that comes with NTK Plugin, 4D sets are implemented as follows (simplified version). function RecordSet( table ) { assert( table instanceof Table, 'Table object expected' ); this.id =

Re: Best solution for printing Enterable PDF docs from 4D v15 or later

2017-06-14 Thread Rob Laveaux via 4D_Tech
> On 14 Jun 2017, at 05:23, Chuck Morris via 4D_Tech <4d_tech@lists.4d.com> > wrote: > I have a project where my client wants me to generate Enterable PDF forms > within 4D that would be populated by variable data but also have form fields > that would be enterable by the customer. Hi Chuck,