c# - Azure RoleEntryPoint not called? -
i've deployed solution azure cloudservice using sdk version 2.6. solution running fine , want configure iis settings roleentrypoint (like keeping threadpool running).
whatever do, seems roleentrypoint never called. trying trace information, throwing exceptions, returning "false" in onstart(). deploy package, cloudservice instances restart , fine.
this simple class:
using system; using system.diagnostics; using system.linq; using elmah; using microsoft.web.administration; using microsoft.windowsazure.diagnostics; using microsoft.windowsazure.serviceruntime; using telerik.sitefinity.cloud.windowsazure; namespace sitefinitywebapp { public class azurewebrole : roleentrypoint { public override void run() { trace.writeline("entering run method"); trace.traceinformation("run"); base.run(); } public override bool onstart() { return false; trace.writeline("entering onstart method"); trace.traceinformation("onstart"); throw new system.applicationexception("you going down!"); return base.onstart(); } } }
this class in main webrole-assembly. after deploying tried "reimaging" , restarting vm. both should unnecessary wanted make sure role gets chance call roleentrypoint.
any idea why code not called? understand returning "false" onstart should have effect role doesn't start @ all? why role start?
our roleentrypoint
not starting azure cloud service web role. fix issue - following steps worked us:
fix roleentrypoint not getting called
- remove project references in web role azure, , remove
packages.config
- remove current web role azure project (ccproj)
- re-add web role azure project (this re-adds dependencies)
- observe updated
packages.config
, project references. - in web role, ensure
microsoft.windowsazure.serviceruntime
project reference hascopy local = true
@mohamed-abed led solution, had version mismatch between azure sdk , unofficial nuget package azure runtime.
the essential rule ccproj productversion
should match assembly version referenced in web role or roleentrypoint
not invoked.
Comments
Post a Comment