This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
16
Web Server - Ask For Help / Re: How to fill map data before showing HERE map
« on: March 11, 2025, 06:42:10 AM »
is your app online so I can see it from here?
17
Web Server - Ask For Help / Re: How to fill map data before showing HERE map
« on: March 10, 2025, 07:26:47 PM »
change the example app to use your credentials, not mine.
18
Web Server - Ask For Help / Re: How to fill map data before showing HERE map
« on: March 07, 2025, 09:27:20 PM »
The web76 example is working for you? or not?
ie - are we looking at the example for an issue, or your app for an issue?
ie - are we looking at the example for an issue, or your app for an issue?
19
Web Server - Ask For Help / Re: reload page before or after an alert message
« on: March 06, 2025, 07:31:40 PM »
tell us more about your context, what you are doing, and what you want to refresh.
20
Web Server - Ask For Help / Re: Broken browse
« on: March 06, 2025, 01:05:10 AM »
your pattern is unnecessarily deep.
A better approach would be to put Browse 3 on Form1 as a field.
Not as a child of Browse 2.
Cheers
Bruce
A better approach would be to put Browse 3 on Form1 as a field.
Not as a child of Browse 2.
Cheers
Bruce
21
Web Server - Ask For Help / Re: Setting XML Attribute Using Extended Name Attributes
« on: March 03, 2025, 11:21:20 PM »
I suspect the issue is your SAVE call.
the Save should be;
xml.save(ReturnG, strxmlout, '', 'return')
or
xml.save(ReturnG, strxmlout, 'return')
not
xml.save(ReturnG, strxmlout, 'return','')
the Save should be;
xml.save(ReturnG, strxmlout, '', 'return')
or
xml.save(ReturnG, strxmlout, 'return')
not
xml.save(ReturnG, strxmlout, 'return','')
22
Web Server - Ask For Help / Re: NT and Sftp?
« on: February 15, 2025, 10:40:08 PM »
SFTP is FTP using the SSH security protocol.
FTPS and FTPES are FTL using the SSL (TLS) security protocol.
NetTalk does TLS, but not SSH because NetTalk uses OpenSSL which doesn't do SSH.
It would be a lot of work, and another library, to add SSH, and frankly the demand for it does not justify the effort.
Cheers
Bruce
FTPS and FTPES are FTL using the SSL (TLS) security protocol.
NetTalk does TLS, but not SSH because NetTalk uses OpenSSL which doesn't do SSH.
It would be a lot of work, and another library, to add SSH, and frankly the demand for it does not justify the effort.
Cheers
Bruce
23
Web Server - Ask For Help / Re: NT and Sftp?
« on: February 13, 2025, 07:22:42 PM »
No, SFTP is not supported. FTPS and FTPES are supported, but I suspect that won't help you in this case.
For SFTP I recommend using LibCurl. https://github.com/mikeduglas/libcurl
For SFTP I recommend using LibCurl. https://github.com/mikeduglas/libcurl
24
The Rest - Ask For Help / Re: Need embed point for calculations, please
« on: February 10, 2025, 05:35:21 AM »
You're returning a VIEW. This is a client-side structure, which is populated by server-side values.
It's not possible to inject "local variables" (ie calculations) into a VIEW. At least not in the way you imagine.
I think this might be a question better answered in the webinar on Thursday.
It's not possible to inject "local variables" (ie calculations) into a VIEW. At least not in the way you imagine.
I think this might be a question better answered in the webinar on Thursday.
25
Web Server - Ask For Help / Re: Microservices?
« on: February 10, 2025, 05:32:58 AM »
sounds like web services to me.
So, then yes, the answer is yes.
Or, let me put it another way. A "microservice" is just a program that doesn't do much. Other programs talk to it, and it does some small thing using a Web Service API. It's not a "technology", it's an idea - the idea of making lots of small exe's which each exe does one task, and then you have gazillions of these things running and so other programs can call them, get something done, and so on.
So, then yes, the answer is yes.
Or, let me put it another way. A "microservice" is just a program that doesn't do much. Other programs talk to it, and it does some small thing using a Web Service API. It's not a "technology", it's an idea - the idea of making lots of small exe's which each exe does one task, and then you have gazillions of these things running and so other programs can call them, get something done, and so on.
26
Web Server - Ask For Help / Re: Microservices?
« on: February 08, 2025, 09:33:05 PM »
The short answer is "yes". But the longer answer is "define microservice". My definition and yours may be different.
27
Web Server - Ask For Help / Re: Double drop menu appear twice
« on: February 02, 2025, 10:41:48 PM »
so what _did_ you change to cause this effect?
28
Web Server - Ask For Help / Re: NTWS behaving strangely
« on: January 30, 2025, 06:01:30 PM »
turn on netShowSend to see what is going to the client (the browser.)
Perhaps this is getting bigger and bigger?
Perhaps this is getting bigger and bigger?
29
Web Server - Ask For Help / Re: Change defaut Browse Layout Method on the fly?
« on: January 28, 2025, 11:11:40 PM »
>> The young kids consume their web data differently and like the flex box display.
Or a Grid display.
>> so, I vote for Tables and if I am going to look at them on a mobile device, I will turn the display to horizontal to see the whole table width.
You should rather use Grid layout, and use different CSS for one option or the other. But that's perhaps a question for another thread;
>> s_web._SitesQueue.Defaults.FormLayoutMethod = Net:Table with s_web._SitesQueue.Defaults.FormLayoutMethod = Net:Div and give the user a choice. Is that a good idea or will this change it for all users?
That would change it for all users. s_web is the server object, and there's only one of those.
But the NetWebForm doesn't use s_web._SitesQueue.Defaults.FormLayoutMethod, it uses p_web.site.FormLayoutMethod
p_web.site.FormLayoutMethod is primed with the value in s_web._SitesQueue.Defaults.FormLayoutMethod, but you can change it if you like. I recommend in WebHAndler in the ProcessLink method, before the parent call.
Cheers
Bruce
Or a Grid display.
>> so, I vote for Tables and if I am going to look at them on a mobile device, I will turn the display to horizontal to see the whole table width.
You should rather use Grid layout, and use different CSS for one option or the other. But that's perhaps a question for another thread;
>> s_web._SitesQueue.Defaults.FormLayoutMethod = Net:Table with s_web._SitesQueue.Defaults.FormLayoutMethod = Net:Div and give the user a choice. Is that a good idea or will this change it for all users?
That would change it for all users. s_web is the server object, and there's only one of those.
But the NetWebForm doesn't use s_web._SitesQueue.Defaults.FormLayoutMethod, it uses p_web.site.FormLayoutMethod
p_web.site.FormLayoutMethod is primed with the value in s_web._SitesQueue.Defaults.FormLayoutMethod, but you can change it if you like. I recommend in WebHAndler in the ProcessLink method, before the parent call.
Cheers
Bruce
30
Web Server - Ask For Help / Re: All themes up to date?
« on: January 20, 2025, 06:21:23 PM »
As far as I know, yes.