NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: Jane on September 06, 2023, 02:41:00 PM

Title: Possible NT14 settings bug (ACME challenge type setting)
Post by: Jane on September 06, 2023, 02:41:00 PM
Bruce,

Converting my first app to NT14 from 12.63.  Thanks for the walk-through on ClarionLive.

I set Challenge Method to Manual (hoping that's a handy new setting for not using Let's Encrypt for a website that has a manual cert.)

The radio button sets the value to -1
set:AcmeChallenge is a byte.
The serverSettings XML translates that -1 to 255.

Is this the intended behavior?  Should set:AcmeChallenge be a LONG?  (Since net:manual is declared as equate(-1) in NetAcme.inc I don't think it should be a BYTE).

Cheers,

Jane
Title: Re: Possible NT14 settings bug (ACME challenge type setting)
Post by: Jane on September 08, 2023, 02:59:32 PM
Changing the declaration to a LONG on line 825 of netweba.tpw seems to give the behavior I was expecting.
Title: Re: Possible NT14 settings bug (ACME challenge type setting)
Post by: Bruce on September 10, 2023, 03:46:41 AM
noted, and yes "Manual" is for turning off auto.
Title: Re: Possible NT14 settings bug (ACME challenge type setting)
Post by: Bruce on September 10, 2023, 03:52:15 AM
changed to long for 14.05
Title: Re: Possible NT14 settings bug (ACME challenge type setting)
Post by: Jane on September 10, 2023, 12:32:19 PM
Thanks!  :)