English 中文(简体)
建议的结构——提供伙伴关系的服务器应用。 NET Web front end
原标题:Recommended architecture - Server application that provides a ASP.NET Web front end

我会看一下开发一种能显示ASP的紧急应用的最佳方式。 NET 管理/管理前线。

服务器(服务吗?)还需要向技转中心提供听器,并向COM港的仪器进行通信。

The most obvious way I can think of doing this is to have an ASP.NET MVC web app and have a windows service that talks to the web app using a web calls/services. I guess then I d talk to the service using the tcp listener or remoting?

唯一的另一种方式是实际担任服务中的网络服务器部分的东道国,而不是使用表面上看上去的IIS。

是否有任何人经历过这种/建议?

它是一个开放的结局,但我希望我能解释这些基本原理。

TIA

Sam

问题回答

我或许会尝试和把事情分开。

• 启动一个核心项目,由您的所有业务逻辑依据(用户如何与其互动的不确定性);

然后,创立两个项目,以消耗这一核心项目,一个是您的MVC,另一个是WCF或服务Stack服务,能够处理你的TCP。

双方使用正常手段分享国家份额; 既包括加工企业,也包括共享数据库等。

它向我转告了非常接近Windows Communication Foundation 。 您对协会主办的需求。 NET communication, and TCP communication. MSDN对WCF的概述如下:here。 还有一个关于运输议定书的文章:here

有一些好事——如果是很老的话——我们在这里就在Stack Overflow。 我刚刚开始亲临这个世界,我不得不承认,这首先令人生畏。 《Beginners指南》(见上文第一个超级链接)有几部关于世界合作框架的短片,但非常有用的理论录像。

我要说的是,虽然这似乎令人生畏或困难,但为了你的目的使用现有的、既定的技术肯定比试图为像你这样的东西写出你自己 home的解决方案要好。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签