Is SqlDependency not working on GoDaddy? I'm trying to listen to a database table whenever a data change is done a particular process should be executed.
Everything is working fine in my development machine. But when I deploy it to GoDaddy it doesnt work and no error is being fired.
I'm having problems in this line
var dependency = new SqlDependency(command);
dependency.OnChange += new OnChangeEventHandler(dependency_OnChange);
Any thoughts?