PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WM Push Notifications and code execution
WM Push Notifications and code execution
Iniciado por Ruben Sanchez Peña, 07,jun. 2017 14:52 - 2 respuestas
Publicado el 07,junio 2017 - 14:52
Hi. I need implement the code automatic execution when device receive the Push Notification. The notification is received in device and i need call to a function to data update. At the moment i can receive the notification but i must punh on it to execute the call to procedure.

Is it posible automatice it?

I have tried other methods to schedule the process (persistent thread, device alarm libraries, ...) but i think the Push Notification is the more secure, simple and useful.

Thanks in advance.

Rubén Sánchez Peña
Miembro registrado
498 mensajes
Popularité : +8 (8 votes)
Publicado el 08,marzo 2019 - 22:59
Hi Ruben

Maybe you solve this issue but....


to execute the procedure at the moment you recieve it it's only send it with out Title and Message
Like that the procedure that it's called for pushProcedure it will execute.

Now the notification it won't appear and you need to code it yourself to appear one for local.

Ok then it only works if the app it's on foreground, on Background the app on Android it will be launch out of nowhere.

for iPhone well... works great on foreground but the local procedure doesn't appear and if it's on background nothing change and it won't execute the procedure...


hope this help... and I have this issue about the foreground and background...

--
Best Regards
ARV
Miembro registrado
12 mensajes
Publicado el 27,enero 2020 - 00:30
No solution yet? Facing the same issue...

It should be something like:

- IF WinStatus(mywin) = Active THEN Procedure()

:-(