4D Server 15.3 crashes a server when choosing a datafile

2017-09-05 Thread Paul Lovejoy via 4D_Tech
Hi, We have a Mac OSX 10.10.5 server that has been running a 4D Server 15.3 database successfully for a few months. Starting a week ago, when we install a new version of the compiled database, the moment we select the database file to be used with the application, the machine crashes. This is b

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread John Baughman via 4D_Tech
I have a v14 database deployed that talks to Quickbooks desktop on Windows 7. I can’t remember now if I ever posted to the NUM how I ended up doing it. I haven’t touched the code for over a year so could not tell you in detail how it all works now. If you read the SDK you will see that there ar

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread Keisuke Miyako via 4D_Tech
Hello, thank you for the kind words. generally speaking, OAuth2 is much more simpler compared to OAuth1, but the two are not compatible; you need to completely refactor the HTTP request. > 2017/09/06 10:16、Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> のメール: > Does migrating to Oath2 require mo

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread Kirk Brooks via 4D_Tech
Miyako, This is fabulous. Thank you! Did you mention this and I missed it? Because this is a non-trivial little bit of programming. It looks like this example is using Oauth1 and most of us will need to use Oauth2 ( https://developer.intuit.com/docs/0100_quickbooks_online/0100_essentials/000500_a

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread Douglas von Roeder via 4D_Tech
Miyako: Ah, yes, I should have checked there. Thank you! -- Douglas von Roeder 949-336-2902 On Tue, Sep 5, 2017 at 5:26 PM, Keisuke Miyako via 4D_Tech < 4d_tech@lists.4d.com> wrote: > you could start from here: > > https://github.com/miyako/4d-tips-quickbook-integration > > > 2017/09/06 8:18、D

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread Keisuke Miyako via 4D_Tech
you could start from here: https://github.com/miyako/4d-tips-quickbook-integration > 2017/09/06 8:18、Douglas von Roeder via 4D_Tech <4d_tech@lists.4d.com> のメール: > What's the best approach to take for that. ** 4D Internet User

Re: Web License issue

2017-09-05 Thread Kevin Abraham via 4D_Tech
Doug, This happened to us once, Web Application Extension License is the wrong license. They are named very similarly and 4D sent us the wrong license once. The correct License is listed as "4D Web Application Expansion for 4D Client v13”. If it does NOT say “for 4D Client” on the end, it is wr

Re: Quickbooks 2014/4D 2014/QB SDK 13.0

2017-09-05 Thread Douglas von Roeder via 4D_Tech
Heh folks - where did this end up? I'm working with a company that's using QB desktop and, based on the initial, brief discussions they want to send data to QB, create invoices, and get the invoice number back in 4D. What's the best approach to take for that. Kirk - at least the API uses XML or

Web License issue

2017-09-05 Thread Doug Hall via 4D_Tech
I seem to be missing something in configuring 4D (Remote) to serve web pages, and I thought I'd post here first, before bugging 4D for support. I have my Web Application Expansion license and even a Web Services Expansion for 4D Client license installed and recognized on my 4D Server (v15). I also

Re: SVG component question

2017-09-05 Thread Keisuke Miyako via 4D_Tech
an SVG picture has a "rendering tree", which is the backend of the displayed image. it also has a "dom tree", which is the parsed xml structure in memory. SVG SET ATTRIBUTES with no optional * works on the rendering tree, which is useful if you want to alter the image in a "volatile" way. for exa

Re: SVG component question

2017-09-05 Thread Keith Culotta via 4D_Tech
There is a DOM. Lift the hood on SVG and you'll find XML. I missed SVG_GET_ATTRIBUTE until I discovered that DOM GET XML ATTRIBUTE BY NAME works for that. Keith - CDI > On Sep 5, 2017, at 3:03 PM, Two Way Communications via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > > Thanks Keith, I was

Re: SVG component question

2017-09-05 Thread Two Way Communications via 4D_Tech
Thanks Keith, I was already afraid of that. And yes, if there is a DOM then it is possible to use XML commands. But since i created the SVG using SVG_New, I assume there is no DOM, but I am not sure about that. Rudy Mortier Two Way Communications bvba - > On 05 Sep 2017, a

[ANN] 4D v16.2 ready for download

2017-09-05 Thread Brian Young via 4D_Tech
We are pleased to announce the availability of the latest update to our 4D v16 product line: 4D v16.2 In addition to bug fixes, 4D v16.2 contains the open source Xerces library upgrade to version 3.1.4. Registered users may download 4D v16.2 for free from the 4D download page, where the late

Re: SVG component question

2017-09-05 Thread Keith Culotta via 4D_Tech
I think a 'text' element's text can only be set when it is created, unlike a textArea. So the item that needs to be changed will need to be deleted and created again. OTOH, I didn't know about addressing the "4d-text" attribute. Maybe it can be better addressed via XML commands? Keith - CD

SVG component question

2017-09-05 Thread Two Way Communications via 4D_Tech
Hi guys, For the past hour I have been trying to modify the content of a text (NOT textarea) in an SVG document. I use: SVG_SET_ATTRIBUTES ($RPMKlblObjRef;"4d-text";[REAP_Markers]Label) But the text does not get updated. SVG SET ATTRIBUTES($RPMKlblObjRef;"4d-text";[REAP_Markers]Label) does wor

RE: Widget questions

2017-09-05 Thread Piotr Chabot Stadhouders via 4D_Tech
Hi Miyako, Thanks for your clear explanation, it is much appreciated. I must say that when reading all this below, it is no invitation to create widgets, but I am not giving up. I am trying to create a custom dropdown list that I can use wherever I want, on every form and every page I want. I do