[Your Name] Audience Level: Intermediate to Advanced Time to read: 10 minutes 1. The Problem: The Two-Speed IT Department Many of our readers manage warehouses, logistics, or medical systems where the core business runs on a WinDev Desktop application linked to an HFSQL Server (on-premise). However, management now wants a mobile or web portal (built in WebDev) hosted in the cloud.
IF Request.StatusCode = 201 THEN Outbox_Table.STATUS = "SENT" HModify(Outbox_Table) ELSE // Retry later. Do NOT delete. Outbox_Table.RETRY_COUNT += 1 HModify(Outbox_Table) END END On the Cloud side (WebDev), you need a stateless REST API to accept these pushes. windev magazine
// Write to Cloud HFSQL Cloud_Order.ID = OrderInfo.ID Cloud_Order.Date = OrderInfo.Date Cloud_Order.Status = "SYNCED_FROM_DESKTOP" [Your Name] Audience Level: Intermediate to Advanced Time