Re: Bug or feature?

2018-01-31 Thread Keisuke Miyako via 4D_Tech
JSON Parse error can be handled with ON ERR CALL, because it is not a runtime error. "Current method name" requires range checking (see docs), but that is unrelated. you just have to be aware that OK isn't updated, you can consult "OB Is defined" instead. > 2018/02/01 14:20、Kirk Brooks via

Re: Bug or feature?

2018-01-31 Thread Kirk Brooks via 4D_Tech
Hey Tim, Thank you for the references. You are always so prompt with spot on links like that. I get the thinking about runtime errors - but in the absence of a workable way to test the validity of a JSON string in compiled mode it seems a good place for an actual method to do this. Or writing in

Re(2): "Goodbye 4D Write" email

2018-01-31 Thread Don Lapin via 4D_Tech
Hi Brian, You did not answer the question regarding whether 4D will continue to work with 4D Write (the regular version, not the Pro). That's my primary concern at the moment. Since my rep told me that it would continue to work at the last developer event in San Jose, I don't understand why

Re: ImageCaptureCore - to Variable?

2018-01-31 Thread Keisuke Miyako via 4D_Tech
yes, but you receive binary RGB data in chunks, and you have to build your own JPG, PNG, TIFF, whatever, by code. do you really want to go down that path? 2018/02/01 8:03、Keith Culotta via 4D_Tech <4d_tech@lists.4d.com> のメール: Is an image available somewhere using

RE: Bug or feature?

2018-01-31 Thread Timothy Penner via 4D_Tech
> I don't see why? Because runtime errors are not caught in compiled mode: { Tech Tip: Range checking errors are not caught by ON ERR CALL in compiled mode http://kb.4d.com/assetid=77848 } -Tim ** 4D Internet Users Group (4D

Re: Bug or feature?

2018-01-31 Thread Arnaud de Montard via 4D_Tech
> Le 1 févr. 2018 à 01:09, Timothy Penner via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > Hi Kirk, > > [...] > > We also have this tech tip - but I suppose it doesn't work in compiled mode... > Tech Tip: How to check if TEXT is an OBJECT / JSON > http://kb.4d.com/assetid=77555 I don't see

RE: Bug or feature?

2018-01-31 Thread Timothy Penner via 4D_Tech
Hi Kirk, Have you seen these tech tips? Tech Tip: Range checking errors are not caught ON ERR CALL in compiled mode http://kb.4d.com/assetid=77848 Tech Tip: Consider disabling "Interact with the desktop" when running 4D Server as a Service http://kb.4d.com/assetid=77847 We also have this tech

Re: Bug or feature?

2018-01-31 Thread Kirk Brooks via 4D_Tech
Has anything moved on this issue? Just today I was getting runtime errors on the server. You know, the open dialog, processes hung up. Sigh. It was in a component so i dug into to see why the error was propagating to the level of stopping things and found exactly this situation. Even more, in

ImageCaptureCore - to Variable?

2018-01-31 Thread Keith Culotta via 4D_Tech
Hello, I'm experimenting with 4d-plugin-ica and it's working. Is it possible to avoid scanning to a disk file? I tried ICA SET SCAN OPTION ($scanner;Scanner transfer mode;String(Scanner transfer mode data)) and can see a BLOB is being built. Using BLOB TO PICTURE and BLOB TO VARIABLE (with a

Re: "Goodbye 4D Write" email

2018-01-31 Thread Brian Young via 4D_Tech
Hi Don, If you haven’t already, please add your concern about "Export to MS Word" to the 4D Forum where the Product team can see it and respond. Here is a feature request you can up-vote: http://forums.4d.com/Post/EN/20813501/1/20814772#20814772 Among the posts linked in the email today is

RE: Problems installing built application

2018-01-31 Thread Timothy Penner via 4D_Tech
> I will experiment with signing BUT I really don't think this is the issue A quick test to see if your application is in a Translocated (Read-Only) quarantine is to run the following code: ALERT(APPLICATION FILE) Then check the output. If the Path is correct and matches where the application

Re: Problems installing built application

2018-01-31 Thread John DeSoi via 4D_Tech
You can do this with the default data file. The new model allows you to startup your app and then switch to another database without showing the open database dialog. You can switch to an existing one or create a new one on the fly. John DeSoi, Ph.D. > On Jan 31, 2018, at 1:35 PM, macjimbo

"Goodbye 4D Write" email

2018-01-31 Thread Don Lapin via 4D_Tech
Did anyone else get this "Goodbye 4D Write" email today? I was told by my rep that 4D Write would continue to work with future versions of the program. I have over 200 customers on a 4D Write-based application. Thousands of lines of code that procedurally assemble long OSHA, Canadian, and EU

RE: https with client as web server

2018-01-31 Thread Timothy Penner via 4D_Tech
> But I don't know were to put it if the web server is a client using a "web > server for 4d client" licence http://doc.4d.com/4Dv16R5/4D/16-R5/Using-TLS-Protocol.300-3481187.en.html#2643168 { key.pem (document containing the private encryption key) and cert.pem (document containing the

Re: Intermittent 4D Server / System crashes

2018-01-31 Thread Alberto Bachler via 4D_Tech
Memory usage/leaks? Are you using a 32 or 64 bit server? > El 28-01-2018, a las 22:50, Mitchell Shiller via 4D_Tech > <4d_tech@lists.4d.com> escribió: > > Hi, > > 4D Server 16.2 > Mac OS 10.13.2 running on a MacMini (Late 2014) 8GB RAM > External RAID 0+1 Samsung SSD. Using SoftRaid XT > >

https with client as web server

2018-01-31 Thread Arnaud de Montard via 4D_Tech
Hi all, on the server, the key.pem file must be near the 4db file. But I don't know were to put it if the web server is a client using a "web server for 4d client" licence. Wondering about local ressources, near the 4db "clone" but I did not try yet. Some help? -- Arnaud de Montard

Re: Problems installing built application

2018-01-31 Thread macjimbo via 4D_Tech
Thanks for your replies to this. I will experiment with signing BUT I really don't think this is the issue, for 2 reasons: 1. I've had this problem since before Gatekeeper was invented. 2. I'm familiar with the Gatekeeper dialogs and this isn't one of them. Gatekeeper would normally prevent the

Array of objects and collection

2018-01-31 Thread Arnaud de Montard via 4D_Tech
Hi all, I have the following piece of code code in a v14R5 DB: $type:=OB get type($obj;"attrib") case of :($type=is object) //38 :($type=is array object) //39 else unexpected //error end case It reads a home made json that defines a home made listbox description. When upgrading to