1
Web Server - Ask For Help / Re: J Files Question
« Last post by rjolda on Today at 05:56:16 AM »Thanks for pointing that out. I will give it a try.
Ron
Yes, I put the button on the Update form for the record and got that record in my Json file.
Thanks,
Ron
Ron
Yes, I put the button on the Update form for the record and got that record in my Json file.
Thanks,
Ron
2
Web Server - Ask For Help / Re: J Files Question
« Last post by Alberto on Today at 04:44:06 AM »Hi, from the docs:
json.Start()
json.Save(CustomerTable,'.\customer.json','',json:Object)
You can use a Group, Queue, View or File as the structure holding the data being
A file record is a Group so I think you can get the record and ...
json.Save(Cus:record,'.\customer.json','',json:Object)
Regards
json.Start()
json.Save(CustomerTable,'.\customer.json','',json:Object)
You can use a Group, Queue, View or File as the structure holding the data being
A file record is a Group so I think you can get the record and ...
json.Save(Cus:record,'.\customer.json','',json:Object)
Regards
3
Web Server - Ask For Help / J Files Question
« Last post by rjolda on Today at 02:11:51 AM »Hi,
I am just starting to play with J Files. J files 3 and CLarion 11.0 ABC.
I have a master table which is a collection of initialization records for each of my kiosks.
I want to be able to write the record for only ONE kiosk to a json object so that I can re--import it to a new computer in that kiosk.
I played with the basic:
json.Start()
json.Save(KioskTable,'.\Kiosk.json')
This make it effortless to place all the Kiosk records into the Json object.
HOWEVER, I want to pick and export ONE record.
How can I placr a filter so that only 1 Kioskrecord that I have chosen gets written to the Json object?
Thanks,
Ron
I am just starting to play with J Files. J files 3 and CLarion 11.0 ABC.
I have a master table which is a collection of initialization records for each of my kiosks.
I want to be able to write the record for only ONE kiosk to a json object so that I can re--import it to a new computer in that kiosk.
I played with the basic:
json.Start()
json.Save(KioskTable,'.\Kiosk.json')
This make it effortless to place all the Kiosk records into the Json object.
HOWEVER, I want to pick and export ONE record.
How can I placr a filter so that only 1 Kioskrecord that I have chosen gets written to the Json object?
Thanks,
Ron
4
Web Server - Share Knowledge / Re: reCAPTCHA v3 with NT
« Last post by ntnewbies on July 03, 2025, 09:54:23 PM »thank you very much for sharing.
regards,
Jason
regards,
Jason
5
Web Server - Ask For Help / Re: NET ERROR: Attempt to Redirect from HTTP to HTTPS - correct the URL [http://sesi
« Last post by Bruce on June 30, 2025, 11:08:26 PM » correct the URL [http://sesiro.cloudcover.insure/apiTotalPolicyRecalc] to [https://sesiro.cloudcover.insure/apiTotalPolicyRecalc]
6
Web Server - Ask For Help / Re: NET ERROR: Attempt to Redirect from HTTP to HTTPS - correct the URL [http://sesi
« Last post by Jane on June 30, 2025, 02:55:59 PM »I don't know, Mike.
I suppose you could either
1. specify https://
2. set OptionDontRedirectHTTPtoHTTPS to FALSE
But you do realize that Obi Wan is nagging you - and deliberately put that error onto line 1780 in NetWww.clw
There's code in the few lines preceding that where he decides how to deal with something that doesn't have http:// or https://
I suppose you could either
1. specify https://
2. set OptionDontRedirectHTTPtoHTTPS to FALSE
But you do realize that Obi Wan is nagging you - and deliberately put that error onto line 1780 in NetWww.clw

There's code in the few lines preceding that where he decides how to deal with something that doesn't have http:// or https://
7
Web Server - Ask For Help / Re: NET ERROR: Attempt to Redirect from HTTP to HTTPS - correct the URL [http://sesi
« Last post by MikeR on June 30, 2025, 12:48:25 AM »Thank You.
But How do I fix it I call "sesiro.cloudcover.insure" in my code (p_web.RequestHost) do I have to explicitly call "https://" in front to fix it.
But How do I fix it I call "sesiro.cloudcover.insure" in my code (p_web.RequestHost) do I have to explicitly call "https://" in front to fix it.
8
Web Server - Ask For Help / Re: Gettinng Session Theme - get the default theme
« Last post by Jane on June 29, 2025, 11:10:24 AM »The Themer example has code in the PageHeader xml to display the *current* theme using <!-- Net:s:_theme_ -->
But to get the default, you could try using p_web.WebServer._SitesQueue.Defaults.DefaultTheme
But to get the default, you could try using p_web.WebServer._SitesQueue.Defaults.DefaultTheme
9
Web Server - Ask For Help / Gettinng Session Theme - get the default theme
« Last post by rjolda on June 29, 2025, 03:48:33 AM »Hi
NT14.21 C11 ABC
I have my site default theme set as 'shoestrap3' and it is saved in: s_web._SitesQueue.Defaults.DefaultTheme = set:Theme
How can I get this value so that I can display it on a page?
This does NOT WORK......message('theme is : ' & s_web._SitesQueue.Defaults.DefaultTheme )
Tried several variations but not successful.
So, How can I get the value of: s_web._SitesQueue.Defaults.DefaultTheme
Thanks,
Ron
NT14.21 C11 ABC
I have my site default theme set as 'shoestrap3' and it is saved in: s_web._SitesQueue.Defaults.DefaultTheme = set:Theme
How can I get this value so that I can display it on a page?
This does NOT WORK......message('theme is : ' & s_web._SitesQueue.Defaults.DefaultTheme )
Tried several variations but not successful.
So, How can I get the value of: s_web._SitesQueue.Defaults.DefaultTheme
Thanks,
Ron
10