views:

26

answers:

1

Hello all,

Situation: I have a web application which shows errors and where you can accept those error messages. I also have a service, which checks errors from a system and sets the error messages in the database. When I accept an error in the web application, i would like the service to know which error message has been accepted, so that it can do some other actions.

My guess is that this could be done through some sort of trigger, but i can't figure out how.

Can anyone help me with this?

A: 

I found the solution myself. It can be done through a service broker and an SQLDependency.

My solution came from the following website: Dream in Code

Michael