英文:
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后端进行交互。
-
将React Web应用程序与AWS服务集成。
-
在Aurora表中列出、添加、更新和删除项目。
-
使用Amazon SES发送筛选后的工作项的电子邮件报告。
-
使用附带的AWS CloudFormation脚本部署和管理示例资源。
英文:
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.
-
Integrate a React web application with AWS services.
-
List, add, update, and delete items in an Aurora table.
-
Send an email report of filtered work items using Amazon SES.
-
Deploy and manage example resources with the included AWS CloudFormation script.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论