We have a background worker role that runs a few services for us. A communication service and a notification service. when i run my code locally both these services run and Im able to write to a log and all seems fine. When I point my config files at production connections strings and other production variables and run my local code against it - it all works as expected. When I push the code to Azure my service doesnt seem to run, I no longer see any data being written to my log table.
We have another solution where we do the same thing (communication and notification service) and this works as expected in this other solution.
I have compared all references in our working solution to those references in our non-working solution - all needed dlls have been set to copyLocal=true - We've tried a variety of different tools to see what the issue is but we have not been able to pin point the exact issue.
EDITED:
- This is a simple process in the background
- I write to the log using a built logging utility - this log table exists on our sql azure database
- We verify that this is working - on account that the service spins up with the azure utility and eventually says 'Ready' - in past occurances - we'd get the error messages or it would just continue to spin.
- Our service is started up by the WorkerRole.cs file - Run / OnStart.