c# - Cannot run WebRole on Azure Cloud Service -


i've deployed azure cloud service parsewebrole in it. when try follow service link

this webpage not available

err_connection_timed_out

weprole running , deployment successful. tried use remote debug understand going on there didn't me. create logger

        public override bool onstart()         {             try             {                 _logger.info("trying start prserwebrole...");                 var res =  base.onstart();                 if (res) _logger.info("prserwebrole started!");                 else _logger.info("prserwebrole not started!");                 return res;             }             catch(exception ex)             {                 _logger.error(ex);             }              return false;         }  

in logger file don't see of messages, i'm pretty sure logger working correctly. had issues certificates don't think had impact on problem since successful deployment.

where should start now? , first file launching azure? can debug it?

p.s. sorry english guys ;)


Comments