Proper way to build an Azure Web Site to have multiple services

僤鯓⒐⒋嵵緔 提交于 2019-12-12 03:55:50

问题


I need some guidance here on the Azure paradigm. I am building a multi-user data model. I want the core data model available as one set of services (e.g. a contract) on one URL, I want another set of services for managing the cache, statistics, start, stop, etc. on another URL (e.g. another contract for operator-type functions) and a third site for developer extensions (e.g. non-trivial, user-defined transactions). All three of these services need to share the common data model.

I get the part where an Azure 'Role' is basically a VM. After that, I'm stuck. If I add three WCF Web Service Roles, I get three separate instances that can't communicate. What is the recommended way to construct a solution/Azure Role to handle the case described above?

来源:https://stackoverflow.com/questions/36265841/proper-way-to-build-an-azure-web-site-to-have-multiple-services

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!