所以我有以下架构:Angular SPA(单页面应用程序)执行对.NET Web API控制器的调用,该控制器向Publisher EasyNetQ窗口服务发布消息,该服务向第二个EasyNetQ窗口发送异步请求名为Subscriber的服务,它调用后端类来生成SSRS报告,最后将异步响应发送回Publisher。以下是相关架构图:
到目前为止,订阅者收到响应,生成报告,并将消息发送回Publisher。以下是Web API控制器如何将报告数据消息发送到发布服务器:
private IHttpActionResult generateReports(int[] incidentIds)
{
try
{
var incident = this.incidentRepository.GetIncident(incidentIds[0]);
var client = this.clientService.GetClient(incident.ClientId_Fk);
using (var messageBus = RabbitHutch.CreateBus("host=localhost"))
{
// Loop through all incidents
foreach (var incidentId in incidentIds)
{
foreach (var format in this.formats)
{
Dictionary<Dictionary<int, Client>, SSRSReportFormat> reportData = new Dictionary
<Dictionary<int, Client>, SSRSReportFormat>()
{
{new Dictionary<int, Client>() {{incidentId, client}}, format}
};
messageBus.Publish(new ReportData
{
clientId = client.Id,
incidentId = incidentId,
clientName = client.Name,
clientNetworkPath = client.NetworkPath,
formatDescription = EnumUtils.GetDescription(format),
reportFormat = format.ToString()
});
}
}
}
return this.Ok();
}
catch (Exception ex)
{
return this.InternalServerError(ex);
}
}
这是我从发布商发送请求的方式:
public partial class CreateRequestService : ServiceBase
{
private IBus bus = null;
public CreateRequestService()
{
this.InitializeComponent();
}
protected override void OnStart(string[] args)
{
this.bus = RabbitHutch.CreateBus("host=localhost");
this.bus.Subscribe<ReportData>("reportHandling", this.HandleReportData);
}
protected override void OnStop()
{
this.bus.Dispose();
}
private void HandleReportData(ReportData reportData)
{
int clientId = reportData.clientId;
int incidentId = reportData.incidentId;
string clientName = reportData.clientName;
string clientNetworkPath = reportData.clientNetworkPath;
string formatDescription = reportData.formatDescription;
string reportFormat = reportData.reportFormat;
var task = this.bus.RequestAsync<ReportData, TestResponse>(reportData);
task.ContinueWith(response => Library.WriteErrorLog("Got response: '{0}'" + response.Result.Response, "PublisherLogFile"));
}
}
最后,用于生成报告并从订阅者发回响应的代码:
public partial class RequestResponderService : ServiceBase
{
private IBus bus = null;
public RequestResponderService()
{
this.InitializeComponent();
}
/// <summary>
/// Initialize the Bus to receive and respond to messages through
/// </summary>
/// <param name="args"></param>
protected override void OnStart(string[] args)
{
// Create a group of worker objects
var workers = new BlockingCollection<MyWorker>();
for (int i = 0; i < 10; i++)
{
workers.Add(new MyWorker());
}
workers.CompleteAdding();
// Initialize the bus
this.bus = RabbitHutch.CreateBus("host=localhost");
// Respond to the request asynchronously
this.bus.RespondAsync<ReportData, TestResponse>(request =>
(Task<TestResponse>) Task.Factory.StartNew(() =>
{
var worker = workers.Take();
try
{
return worker.Execute(request);
}
catch (Exception)
{
throw;
}
finally
{
}
}));
}
protected override void OnStop()
{
this.bus.Dispose();
}
}
class MyWorker
{
public TestResponse Execute(ReportData request)
{
int clientId = request.clientId;
int incidentId = request.incidentId;
string clientName = request.clientName;
string clientNetworkPath = request.clientNetworkPath;
string formatDescription = request.formatDescription;
string reportFormat = request.reportFormat;
ReportQuery reportQuery = new ReportQuery();
reportQuery.Get(incidentId, reportFormat, formatDescription, clientName, clientNetworkPath, clientId);
return new TestResponse { Response = " ***** Report generated for client: " + clientName + ", incident Id: " + incidentId + ", and format: " + reportFormat + " ***** " };
}
}
虽然这一切都有效,但我还需要一些方法来通知Angular SPA已生成报告,以便我可以给用户一个适当的反馈。这是我有点迷失的地方。 EasyNetQ可以与Angular代码交互吗?此外,一旦我在Publisher中收到响应,我可能会在我的Web API控制器中调用一些方法,但仍然存在警告Angular代码的问题。有什么想法吗?
答案 0 :(得分:3)
首先请注意,您必须在某处存储有关报告状态的信息。您可以将它存储在两个地方:
当您决定存储位置时 - 还有两种选择如何将此信息传递给客户端:
客户端(Angular)可以不时进行轮询(请注意,不所谓的“长轮询”)。如果您将状态存储在数据库中 - 在这种情况下您可以查看它。
Angular和你的api之间存在持久连接(网络套接字,长轮询也在这里)。在这种情况下,您最好将您的状态存储在web api的内存中(通过将带有报告状态的Rabbit消息从您的服务传递到web api,然后将其存储在内存中,或者通过持久连接将其直接转发给Angular)。
如果您不希望不同平台(iOS,纯Linux等)上的客户端 - SignlarR可以正常工作。它将从websockets回溯到长轮询到常规轮询,具体取决于用户浏览器的功能。