I'm developing a web application using TypeScript
for client-side scripting. I am utilizing technologies such as Spring Boot
, PostgreSQL
, and Angular
. My goal is to allow my existing Java
desktop application, completely independent from the web app itself, to receive data sent from the website when a user clicks a button. The desktop app will then prompt the user to import this data.
I am seeking advice on how to achieve this. Are there any examples or sample code available?
Is it possible to set up a listener server in my desktop application that can accept data payloads from clients (browsers) in a way that is platform-independent?
It's important to note that this process is distinct from downloading data from an internet source as the user should trigger the action from the browser interface, not the desktop application itself.