Questions tagged [change-notification]

Change Notification is technology to notify the concern system , person about change occurs in current system / application.

Change Notification is technology to notify the concern system , person about change occurs in current system / application.

To notify the changes , We can write custom code or can reuse the existing API / functionality. As per www.hongkiat.com, We can use some tools to notify the changes.

Focus.com describes the change notification in process and product.

59 questions
1
vote
0 answers

Database Change Notification Not Working in Java

I am trying to get Database Change Notification. I am currently using JDK 11 , ojdbc10 jar and Oracle 19c Enterprise Edition. Below are the steps I have followed : grant change notification to ; CREATE TABLE myuser.Test (TEST…
1
vote
0 answers

How can we re-write the same C# code as per Zoho deluge?

I am working on a Cliq extension and need some help in re-formatting the C# script to Zoho Deluge script. I need to read response sent by a website and post the parameter with 200 OK status code. if(!string.isNullOrEmpty(validationToken)) { …
1
vote
1 answer

odp.net db change notification

Is there a way to get a notification when a certain field in a db table is changed ? I'm using ODP.NET and Oracle 11g, on a .NET 4.0 app. LATER EDIT : So, from the answers i understand that it would be possible, so i've tried something. This is how…
maephisto
  • 4,952
  • 11
  • 53
  • 73
1
vote
0 answers

MS Graph API frequently/excessively triggering the client app against Active Directory User changes

Background: I wanted to receive notifications in a Logic App for Azure Active Directory Users' changes. I created a subscription to AD User changes using Microsoft Graph's REST API: POST https://graph.microsoft.com/v1.0/subscriptions { …
1
vote
0 answers

Can write userData to Firebase, Can't read from Firebase into fields : Flutter

I'm trying to read my UserData into form fields when the user tried to edit their information. I can write to Firebase, but I can't read and display user data into the built fields. Each userData is stored with the signed in user's mid as the…
1
vote
1 answer

In WPF, what's the best way to get a PreviewPropertyChanged notification for a dependency property?

To my knowledge, there is no 'PreviewPropertyChanged' that you can subscribe to for a dependency property, but I need to know a value WILL be changing. My thought is to sort of re-purpose the Coerce Value method and do my check there (naturally…
Mark A. Donohoe
  • 28,442
  • 25
  • 137
  • 286
1
vote
1 answer

postsharp observablecollection firing collectionchanged on propertychanged

Non MVVM. I got this ObservableCollection machines which is made of Machine-type objects: [Serializable] [NotifyPropertyChanged] public abstract class Machine { public MachineNames MachineType { get; set; } public int MachineVersion { get;…
Gabe
  • 630
  • 1
  • 9
  • 25
1
vote
2 answers

Entity Framework 4 - How to inject logic in property setter?

I have a property auto-generated from database in my edmx: Description. I then create a "partial class" .cs file for the entity and add a read-only property: ShortDescription. ShortDescription's getter simply processes Description (removes line…
Gus Cavalcanti
  • 10,527
  • 23
  • 71
  • 104
1
vote
1 answer

Managed ODP.net: change notification and ldap

I'm using the LDAP resolution to connect to an Oracle database. This works fine now for regular queries, I can open a connection and execute commands against it. Unfortunately, it does not work for change notification queries for which I get a…
vc 74
  • 37,131
  • 7
  • 73
  • 89
1
vote
2 answers

How to create XAML like path bindings in C#

The XAML {Binding} construct is very handy because it handles all of the PropertyChanged issues automatically. It is really impressive when you hand it a path to an object, through .NET data structures, and everything is automatically updated for…
Eric
  • 2,029
  • 2
  • 26
  • 36
1
vote
2 answers

In Perl, how can I watch a directory for changes?

use Text::Diff; for($count = 0; $count <= 1000; $count++){ my $data_dir="archive/oswiostat/oracleapps.*dat"; my $data_file= `ls -t $data_dir | head -1`; while($data_file){ print $data_file; open (DAT,$data_file) || die("Could…
VeerM
  • 105
  • 4
  • 11
0
votes
1 answer

Oracle Continuous Query Notification encryption

Is there a way to configure Oracle Continuous Query Notification sent from the server to the registered client, to be encrypted?
0
votes
0 answers

Oracle database change notification in Quarkus 3.0.3.Final

I'm new to oracle database change notification. using this code i get exception when execution is on stmt.execute("SELECT e.EMPLOYEE_ID, e.FIRST_NAME, e.LAST_NAME FROM EMPLOYEES e WHERE e.EMPLOYEE_ID > 1"); need a help on this how to correct…
0
votes
0 answers

Using Graph Api to use change notification for emails. facing error as " Token not found in the cache"

I want to get the Microsoft email notification in my java program. I am using change notification of Microsoft Graph API to get notified whenever new email gets received. I have information like Secret ID, Value, client_id and tenant_id. I have…
0
votes
0 answers

Can I use user filteration on change resource Nofitication subscription using Microsoft Graph API?

I am currently using Microsoft Graph API to access Microsoft teams messages information using delegated user.In the process I have subscribed to change notification for particular channel messages and extract messages from there. Here i found when i…