Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要存储从远程设备接收到的数据,即应用程序需要运行 24 小时,以便它可以捕获数据并将其存储在数据库中。
我很困惑是创建控制台应用程序、Web 应用程序还是我需要开发的任何其他将持续运行的应用程序。
如果您已经开发了应用程序,则将数据发送到 Web 服务。如果您不这样做,请考虑使用 ASP.Net 或 JQuery Mobile 之类的东西创建一个网页,并将数据推送到 HTTP 处理程序或 Web 服务。
如果您沿着 Web 服务路线走,请创建一个接受请求对象并返回响应对象的 Web 方法。它应该是一个非常简单的设计。