Re: 4D Authentication Strategy...

2019-01-04 Thread Robert ListMail via 4D_Tech
Right, I’ll look at that video again. I recall Tim saying that there was some confusion and unnecessary coding on the server side and that his successful and simple code was client side only. Anyway that’s my recollection. Thanks, Robert Sent from my iPhone > On Jan 4, 2019, at 8:33 PM,

Re: 4D Authentication Strategy...

2019-01-04 Thread Keisuke Miyako via 4D_Tech
I would urge you to take a look at the video, https://blog.4d.com/single-sign-on-sso/ it show the code on the client side and the server side that manages authentication. > 2019/01/05 6:36、Robert ListMail via 4D_Tech <4d_tech@lists.4d.com>のメール: > > Tim, I just toggled on the checkbox on the

Re: CalDAV server from 4D

2019-01-04 Thread Keisuke Miyako via 4D_Tech
a fully featured CalDAV server running on 4D would require the web code to respond to all types of HTTP requests as specified in the related RFC https://en.wikipedia.org/wiki/CalDAV but if you do not need to add, delete or modify events, serving a .ics file is no different to serving a .jpg

Re: Sales Tax Solutions for 4D

2019-01-04 Thread Jeffrey Kain via 4D_Tech
That's the build-it-by-hand way. I'm guessing he's using ITK or NTK to open a connection directly? HTTP Get or HTTP Request would be a lot easier. -- Jeffrey Kain jeffrey.k...@gmail.com > On Jan 4, 2019, at 9:23 PM, John DeSoi via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Why are you

Re: Sales Tax Solutions for 4D

2019-01-04 Thread John DeSoi via 4D_Tech
What 4D version are you using and how are you sending the request? What you have below does not correspond to any recent 4D HTTP client interface which passes the headers/values as two text arrays. Why are you sending a content-length header for GET request? John DeSoi, Ph.D. > On Jan 4,

CalDAV server from 4D

2019-01-04 Thread Mitchell Shiller via 4D_Tech
Hi, For years I have generated read only .ics files from data in 4D. These were then stored on a share point on my OSX Server. Well, now Apple has removed almost all features from Server. (In fact, I have now installed it). I would like to still serve up the .ics files so that they can be

Re: Sales Tax Solutions for 4D

2019-01-04 Thread Randy Jaynes via 4D_Tech
Jason, Try setting up the REST call using the PostMan app at https://www.getpostman.com It will be much faster to debug how to get your API calls set up properly. It was very helpful last month for me to get my REST calls for a Web2Print site set up properly. My calls were generally like

Re: 4D Authentication Strategy...

2019-01-04 Thread Robert ListMail via 4D_Tech
Tim, I just toggled on the checkbox on the server that activates this feature but I’ve not implemented the code just yet…. So, how do you specify that you are logging in with the local 4D password instead of SSO? Modifier keys? Hidden Menu? Also, I’m not sure when the SSO login is in effect.

Re: Sales Tax Solutions for 4D

2019-01-04 Thread JasonH via 4D_Tech
Trying out Taxjar, but need a little help to get started. I'm currently sending the following to https://api.taxjar.com (or api.sandbox.taxjar.com) $vt_HTTP_Request:=\ "GET /v2/rates/"+$vt_Zip+<>CRLF+\ "Host: "+$vt_Service_URL+<>CRLF+\ "Connection: close"+<>CRLF+\ "Cache-Control:

Re: Amazon EDIFACT/X12 Gateway

2019-01-04 Thread cjmiller--- via 4D_Tech
Mostly we do edi using a gateway. We have an edi machine that we place documents in and the machine handles the send. We are doing this to SAP shops. EDI is pretty complex so I might look at my solution it will then simply be building a text document in a particular format Not sure if that

Re: REDRAW WINDOW not working v17?

2019-01-04 Thread Robert McKeever via 4D_Tech
Have you tried GOTO PAGE(x) where x is the current page number? > On Jan 3, 2019, at 4:28 PM, Alan Tilson via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hello Keisuke, > > Windows, 32 & 64 bit, although most of my experience is 64 bit. > > Yes, I reference the variable in on display detail.

Amazon EDIFACT/X12 Gateway

2019-01-04 Thread Peter Jakobsson via 4D_Tech
Hi A very happy new year everybody. I have an ERP running at a customer site who is a big Amazon suppler (i.e. they sell products/services TO Amazon). Amazon want them to submit sales invoices via their EDIFACT (or X12) gateway. I’m a bit out of my depth here as I haven’t done any EDI stuff