I have created cloud worker role using VS2013.I have a web application (ASP.net and C#) separatly.I am going to host both applications on azure server.How To integrate worker role with web application?
I am going to host both applications on azure server.
Azure Cloud Service could be a choice for you. Azure Cloud Service provides two types of roles: Web role and Worker role, you can serve your web application on Web role.
Besides, if you’d like to host your web application on Azure App Service, you can try to implement same functionalities as your worker role in a WebJob, and run WebJob in your Azure App Service web app.
For more information about hosting options that Azure provides, you can refer to this article.