We have a project which has one web role(WCF Service) and one worker role. The worker role uses on an average 0.34% of the resources. We would like to host both the WCF and worker role in a single cloud service with a single instance. How can this be done? For now, the worker role and WCF service each use one instance.
Share
Nothing wrong with Sandrino’s answer, but from the question, it doesn’t look like any threading is required. My answer is to just move everything from
WorkerRole.csin the worker role intoWebRole.csin the web role.