Can we use FNC Push Notifications with VCL clients?

Do you think that we we can get a client for VCL applications build with latest Delphi working?
If so how and could please provide some demo application.

I have VCL application and published the message to other VCL application using the TWebPushNotifications component. but it couldn't works.

Could you please help me on it.

Thanks,

Hi,

TWebPushNotifications is for TMS WEB Core applications, not for VCL.
Push notifications are small popup notifications shown on your system by:

  1. directly triggering the OS level API for it
  2. using web push services provided by browsers for web app push messages

The 1st option you can already do via TNotificationCenter. TMS FNC PushNotiifcations handles the 2nd option.

If you want a single VCL application that sends messages to other VCL applications, then make it a server-client setup and use TNotificationCenter in your client to show a notification based on a message that arrives. Or if you just want to share data between two VCL applications then look into IPC as it would be a better fit.