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

  1. remove project references in web role azure, , remove packages.config
  2. remove current web role azure project (ccproj)
  3. re-add web role azure project (this re-adds dependencies)
  4. observe updated packages.config , project references.
  5. in web role, ensure microsoft.windowsazure.serviceruntime project reference has copy 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

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -