以下是我需要做出的设计选择,我正在寻找一些可以帮助我的建议:
要求:我有一个简单的客户端应用程序,它从 xml 文件中读取数据并显示检索到的数据。到目前为止,我的本地文件系统中有这些 xml,我使用它们开发了示例客户端应用程序。
问题 :
我打算将这些文件放在互联网上(安全),并从互联网上阅读它们。
Reason why I want to do so is because my client applciation will be running on different machines at different places , and so reading from internet is much logical I believe.
Also this data is my client's copyright protected, so i need to put it in some location that is secured , at least password protected.
The XML content stored needs to be processed before being presented to client.
我认为 webservices 可能是一个不错的选择,但我以前从未使用过它。
所以我的问题是:
对于给定的要求,你们会建议什么?
- 我应该去网络服务吗?
- 如果我使用 XML 服务器,是否可以添加另一层来处理这些 xml(这会是更好的选择)吗?
- 在做出任何决定之前,我是否应该通过任何其他框架/技术。
在做出决定之前,我的主要关注点应该是什么。
如果我的解释不够清楚或需要进一步的信息建议,请拍下。
谢谢 !!!