I deployed Azure WebJob to an existing Azure website using Visual Studio, the very useful Publish as Web Application.
The package works fine locally, but when it hits the cloud, it doesn't even reach the first line of code (which is the log statement), and I get the following message:
[04/25/2015 19:35:44 > 287dbc: SYS INFO] Status changed to Initializing [04/25/2015 19:35:45 > 287dbc: SYS INFO] Run script 'MyJob.exe' with script host - 'WindowsScriptHost' [04/25/2015 19:35:45 > 287dbc: SYS INFO] Status changed to Running [04/25/2015 19:35:45 > 287dbc: SYS INFO] Status changed to Failed [04/25/2015 19:35:45 > 287dbc: SYS ERR ] Job failed due to exit code -1073741818
I also tried to copy the contents of the package manually via FTP, and I get the same.
Has anyone ever come across this? How did you fix this?
source share