English 中文(简体)
寻找与我的 MVC App 通信的 ASP.NET Webforms App 的响应选项
原标题:Looking for Response Options in regards to an ASP.NET webforms App communicating with my MVC App

我读了这里关于类似问题或将涉及的议题的很多问题/答复,我遇到了一大批不同的文章,其中概述了设立监查委员会,以回应入境请求。

然而,我未能清楚地了解我所面对问题的局限性。

<强 > 问题:

我正在创建一个 asp.net MVC 3 站点。 然而,有两种情况, 我将有一个 asp.net WebForms 应用程序, 在我的站点发出呼叫, 我需要回应 。

  1. One is simply returning a couple strings
  2. The second is a bit more complex, a query result, a undetermined amount of data for reporting purposes by the webforms app.

因为#2, 我是否被迫使用SOAP这样的服务 来交换两个应用程序之间的对象?

我本想对我的 URI 系统 采取一个 节约的方法,但我的缺点是

  1. What limitations due to the reporting information I got to pass back
  2. the response is going to a web-forms app

谁能告诉我 我的选择是什么?

最佳回答

听起来你需要一个单独的服务 处理这些细节, 我会开始寻找网络API 以满足这些需要, 你甚至可能能够利用 API 来做其他的事情

如果网络API对你来说太过分“提前收养”,

问题回答

暂无回答




相关问题
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!

热门标签