Hi everyone,
I've been working on a side project for the past few months and I think it might be useful for many of you.
Licentio (licentio.dev) is a License-as-a-Service platform that lets you manage licenses for your Clarion applications from a clean web dashboard — expiry dates, execution limits, geographic restrictions, machine control, and AI-powered alerts.
Integration from Clarion is straightforward using NetTalk:
net.Start()
net.SetValue(‘’, ‘{“program_id”:“xxx”,“client_id”:“xxx”,“api_key”:“xxx”}’, |
net:NoUrlEncode, ‘application/json’, ‘’)
net.ContentType = ‘application/json’
net.Post(‘https://licentio.dev/validate’)
The response is a simple JSON that you parse with jFiles:
{
“valid”: true,
“message”: “License valid”,
“license_type”: “EXPIRY_DATE”,
“days_remaining”: 18,
“warning”: true,
“warning_message”: “License expires in 18 days”
}
Free plan available — no credit card required.
I'll be doing a live demo this Saturday at the Clarion webinar (Spanish version). Happy to answer any questions here.
👉 licentio.dev