适合具体情况的最佳基础设施
我有以下情况,想知道您会采取什么方法来解决这个问题。
这是客户的需求。
他需要一个网站/电子商务以及能够自定义电子商务外观的内容。 他还希望能够扩展一些功能,例如产品配置。
他在一个国家设有一个办事处,在另一个国家设有另一个办事处。
客户通过网络或电话下订单,然后公司中的某个人决定订单是在办公室 1 还是办公室 2 完成。
客户需要能够从一个位置查看有关两个办公室的信息。
所以我们有 1 个网站 + 2 个办公室,我想知道在这种情况下您会选择做什么。 你会在网络上制作所有东西吗?在这种情况下,我如何处理条形码和特殊打印机。
您会做一个网站 + 1 个在网络上共享数据库的软件吗? 这样的话,数据传输会不会太慢了。
目标是使开发尽可能简单,因为客户希望能够在需要时更换程序员。
最好,应用程序应该在 .Net 中完成,以便更容易编码。
那么在这种情况下你会怎么做呢?
I have the following situation, and I'd like to know what approach would you take to solve this problem.
Here's the client needs.
He needs a WebSite / E-Commerce and what to be able to customize the look of the e-commerce. He also wants to be able to extend some functionality like product configuration.
He have an office in one country, and another office in another country.
The client make their order via the web or by phone, then someone in the company decide if the order should be done in office 1 or office 2.
The client needs to be able to see the information about the two offices from one location.
So we have 1 website + 2 office and I'd like to know what would you choose to do in this situation. Would you make everything in web, in that case, how can I handle barcode and special printers.
Would you do a website + 1 software that share a database on the web. In that case, would the data transfer be too slow.
The goal is to keep the development as simple as possible, because the client wants to be able to change the programmer if it is needed.
Preferably, the application should be done in .Net to make this easier to code.
So what would you do in this situation ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,我将使用 Web 服务来对数据执行操作,但使用富客户端从两个办公室访问 Web 服务。 这样,您就可以处理办公室中可能使用的硬件,而不必担心通过网络连接到数据库(这不是一件好事)。
I would use web services for this to perform your operations against the data, but use a rich client to access the web services from the two offices. This way, you can handle hardware that might be used in the offices, but not worry about connections to the database across the web (which is not a good thing).