如何在AWS中运行.NET 6服务?

huangapple go评论48阅读模式
英文:

How to run NET 6 Service in AWS?

问题

A potential customer has a working RDS PostgreSQL database and legacy WinForms client applications. All work fine. But now they want to re-make the system. The idea is: new Client-> new AWS based service ()->existing RDS. I suggested to develop the service as a .NET 6 Core Service. My question: How can I publish the service to AWS? Can it work with the existing RDS?

英文:

A potential customer has a working RDS PostgreSQL database and legacy WinForms client applications. All work fine. But now they want to re-make the system. The idea is: new Client-> new AWS based service ()->existing RDS I suggested to develop the service as NET 6 Core Service. My question: How can I publish the service to AWS? Can it work with the existing RDS?

答案1

得分: 4

我假设您正在寻找这个用例:

客户端应用 -> .NET后端(AWS .NET SDK) - > AWS RDS

如果您查看 AWS代码库,您将找到一个非常相似的用例。唯一的区别在于,在这个用例中,我们使用了Aurora Serverless数据库。但您可以理解这个概念。

这个示例展示了如何使用AWS .NET SDK创建一个Web应用程序,用于跟踪Amazon Aurora数据库中的工作项,并使用Amazon Simple Email Service(Amazon SES)发送报告。此示例使用React.js构建的前端与RESTful .NET后端进行交互。

  1. 将React Web应用程序与AWS服务集成。

  2. 在Aurora表中列出、添加、更新和删除项目。

  3. 使用Amazon SES发送筛选后的工作项的电子邮件报告。

  4. 使用附带的AWS CloudFormation脚本部署和管理示例资源。

创建一个Aurora Serverless工作项跟踪器

英文:

I assume you are looking for this use case:

Client app -> .NET backend (AWS SDK for .NET) - > AWS RDS

If you look in the AWS Code Library, you will find a very similiar use case. The only difference is in this use case, we use an Aurora Serverless database. But you will get the idea.

This example shows how to use the AWS SDK for .NET to create a web application that tracks work items in an Amazon Aurora database and emails reports by using Amazon Simple Email Service (Amazon SES). This example uses a front end built with React.js to interact with a RESTful .NET backend.

  1. Integrate a React web application with AWS services.

  2. List, add, update, and delete items in an Aurora table.

  3. Send an email report of filtered work items using Amazon SES.

  4. Deploy and manage example resources with the included AWS CloudFormation script.

Create an Aurora Serverless work item tracker

huangapple
  • 本文由 发表于 2023年2月18日 17:44:23
  • 转载请务必保留本文链接:https://go.coder-hub.com/75492467.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定