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.
31
Web Server - Ask For Help / Re: NTWS14.01 - Netweb.js version nr not updated?
« on: August 19, 2023, 02:24:13 AM »
sorted in 14.02
32
Web Server - Ask For Help / Re: Wishes to menu control on a browse.
« on: August 16, 2023, 06:54:44 AM »
noted
33
Web Server - Ask For Help / Re: NT14Labels and routines "Duplicated" Gamma-test
« on: August 15, 2023, 09:44:40 PM »
you would need to provide more information, or better yet an example, showing the label duplicated error.
Just knowing you're getting an error is not sufficient for me to debug it.
>> Also filter expression in auto complete stays in the code even if I remove it from the template.
Again, more information required. I'm not sure what you mean by this?
Cheers
Bruce
Just knowing you're getting an error is not sufficient for me to debug it.
>> Also filter expression in auto complete stays in the code even if I remove it from the template.
Again, more information required. I'm not sure what you mean by this?
Cheers
Bruce
34
Web Server - Ask For Help / Re: NT 14 Query
« on: August 15, 2023, 09:42:50 PM »
Hi Richard,
yes it can be saved. I'm not 100% sure what approach I went for in the end. It may be a RunScreen feature. I'll have to review and get back to you.
Of course this presumes your user has logged in. Without a login (ie being able to attach the save to a user) it's not possible.
Cheers
Bruce
yes it can be saved. I'm not 100% sure what approach I went for in the end. It may be a RunScreen feature. I'll have to review and get back to you.
Of course this presumes your user has logged in. Without a login (ie being able to attach the save to a user) it's not possible.
Cheers
Bruce
35
Web Server - Ask For Help / Re: Add new client using button from UpdateForm
« on: August 07, 2023, 07:40:49 PM »
>> I need to retrieve the client_id of the newly added client.
It's in the session value
Cheers
Bruce
It's in the session value
Cheers
Bruce
36
Web Server - Ask For Help / Re: Easily see procedure template settings?
« on: August 07, 2023, 07:39:43 PM »
NT has a global setting for must-be-logged in, and level, so probably just wait for that.
There's no way to see settings across all procedures.
There's no way to see settings across all procedures.
37
Web Server - Ask For Help / Re: No update buttons on Lookup Browse?
« on: August 04, 2023, 09:25:42 PM »
They are on in popup mode, off in page mode.
There is a good reason for them to be off in page mode.
There is a good reason for them to be off in page mode.
38
Web Server - Ask For Help / Re: Passing P_web as parameter - expense?
« on: August 04, 2023, 09:24:07 PM »
Passing objects as parameters is fast (basically it's a pointer being passed).
So there's "some overhead" in pushing the pointer onto and off of the stack, but since those are simple instructions that take next to no time, this practice is not expensive at all.
So there's "some overhead" in pushing the pointer onto and off of the stack, but since those are simple instructions that take next to no time, this practice is not expensive at all.
39
Web Server - Ask For Help / Re: I do NOT want to include the blob, but he thinks differently
« on: July 31, 2023, 04:21:00 AM »
Is the Signature field in the VIEW declaration?
What does your VIEW declaration look like?
What does your VIEW declaration look like?
40
Web Server - Ask For Help / Re: Single field on form
« on: July 31, 2023, 04:19:44 AM »
Set your Save/Close button so it's NOT the default button.
41
Web Server - Ask For Help / Re: Any simple way to clean a string from non xHtml characters?
« on: July 31, 2023, 04:16:30 AM »
I'm not sure what you are asking, but I think the StringTheory method XMLEncode is what you are looking for.
42
Web Server - Ask For Help / Re: Date Picture Problem
« on: July 24, 2023, 09:14:38 PM »
cool. post an example app showing the effect.
Cheers
Bruce
Cheers
Bruce
43
Web Server - Ask For Help / Re: Internal error with server
« on: July 24, 2023, 06:38:32 AM »
depends what code you have in MyMessage...
You'll probably also want to hook Stop, as that also pops up.
Cheers
Bruce
You'll probably also want to hook Stop, as that also pops up.
Cheers
Bruce
44
Web Server - Ask For Help / Re: What determines the next procedure on the save btn?
« on: July 23, 2023, 11:08:50 PM »
This sounds like you need to create a small example, and then follow up with a question in the webinar.
I know it all makes sense in your head, but I get lost after reading a few lines...
I know it all makes sense in your head, but I get lost after reading a few lines...
45
Web Server - Ask For Help / Re: Attacked by Let's Encrypt
« on: July 19, 2023, 11:19:28 PM »
Morning Jane,
ok, so to be clear here, this has nothing to do with LetsEncrypt.
The NetAcme class in NetTalk has the job of looking after your certificates - both the public ones (which it uses an online service, like LetsEncrypt), AND the local ones (which uses OpenSSL.) When a certificate is "nearing expiry" it will automatically attempt to replace it. This is true for local intranet, and internet ones.
As you note, your cert expires on 19 august, so we are now in the 30 day window for renewal. Which is what happened - it generated a new local cert for you (wasn't that helpful!)
So to clarigy the cause
>> It appears that yesterday [NetTalk] helpfully decided that my certificate was too stale for its taste.
I'm stressing this point here because I don't want there to be any FUD about the LetsEncrypt service, or its certificates. LE was not in play here, NetTalk was.
The time boundary is an equate in netacme.inc
CERTEXPDAYS Equate(33)
so one approach is to make this equate smaller.
I _think_ removing the CA Account field will also inhibit it. Without this field it can't create certificates either way. (I guess you'll let me know later today.)
Cheers
Bruce
ok, so to be clear here, this has nothing to do with LetsEncrypt.
The NetAcme class in NetTalk has the job of looking after your certificates - both the public ones (which it uses an online service, like LetsEncrypt), AND the local ones (which uses OpenSSL.) When a certificate is "nearing expiry" it will automatically attempt to replace it. This is true for local intranet, and internet ones.
As you note, your cert expires on 19 august, so we are now in the 30 day window for renewal. Which is what happened - it generated a new local cert for you (wasn't that helpful!)

So to clarigy the cause
>> It appears that yesterday [NetTalk] helpfully decided that my certificate was too stale for its taste.
I'm stressing this point here because I don't want there to be any FUD about the LetsEncrypt service, or its certificates. LE was not in play here, NetTalk was.
The time boundary is an equate in netacme.inc
CERTEXPDAYS Equate(33)
so one approach is to make this equate smaller.
I _think_ removing the CA Account field will also inhibit it. Without this field it can't create certificates either way. (I guess you'll let me know later today.)
Cheers
Bruce