Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I need to implement push notification in my application, whenever a table gets updated by other user(updating some records through UI).

I have been googling from the morning, but I cant able to proceed further.

What I have tried:

I have found some recommendations to use sqlDependency class with SignalR if its SQL server, but I'm not using SQL server.

kindly suggest me, how to implement in my application
Posted
Updated 23-Jul-17 23:19pm

 
Share this answer
 
v4
Comments
King Fisher 24-Jul-17 13:36pm    
Thanks, will check this
King Fisher 7-Aug-17 7:24am    
Its a nice one.
Push notifications are specific to your web development framework. Because it is the server maintaining an open port for pushing the notification to client. On simple web interface, ASP.NET SignalR is enough and you can use JavaScript to handle new messages.

What you need is already solved (in a general way) on this following link, you just need to trigger the message on change event.
Tutorial: Getting Started with SignalR 2 and MVC 5 | The ASP.NET Site[^]

However if you mean native mobile notifications, then are also device specific, such as Google Firebase for Android etc. You would require separate keys for iOS, Windows Phone and Kindle etc. They all have their own implementations and access methods for notifications. You might be interested in them if you know how-to,
Firebase | App success made simple[^]

Microsoft Azure allows you to use a hub to enable push notifications cross-device. using their keys through one portal.
Notification Hubs - Mobile push notifications | Microsoft Azure[^]
 
Share this answer
 
Comments
King Fisher 19-Dec-16 14:00pm    
thanks,

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900