NetTalk Central

Author Topic: Possible NT14 settings bug (ACME challenge type setting)  (Read 1084 times)

Jane

  • Sr. Member
  • ****
  • Posts: 349
  • Expert on nothing with opinions on everything.
    • View Profile
    • Email
Possible NT14 settings bug (ACME challenge type setting)
« 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
« Last Edit: September 06, 2023, 02:44:21 PM by Jane »

Jane

  • Sr. Member
  • ****
  • Posts: 349
  • Expert on nothing with opinions on everything.
    • View Profile
    • Email
Re: Possible NT14 settings bug (ACME challenge type setting)
« Reply #1 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.

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11179
    • View Profile
Re: Possible NT14 settings bug (ACME challenge type setting)
« Reply #2 on: September 10, 2023, 03:46:41 AM »
noted, and yes "Manual" is for turning off auto.

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11179
    • View Profile
Re: Possible NT14 settings bug (ACME challenge type setting)
« Reply #3 on: September 10, 2023, 03:52:15 AM »
changed to long for 14.05

Jane

  • Sr. Member
  • ****
  • Posts: 349
  • Expert on nothing with opinions on everything.
    • View Profile
    • Email
Re: Possible NT14 settings bug (ACME challenge type setting)
« Reply #4 on: September 10, 2023, 12:32:19 PM »
Thanks!  :)