C# 开发人员友好的 ERP
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/9836/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Developer Friendly ERP
提问by Nathan Birkes
My company is currently using Sage MAS as their ERP system. While integrating our shopping cart is not going to be impossible, it uses COM and has it's own challenges.
我公司目前使用 Sage MAS 作为他们的 ERP 系统。虽然集成我们的购物车并非不可能,但它使用 COM 并且有它自己的挑战。
I was wondering if there was a more developer friendly ERP out there. I have looked into Microsoft Dynamics but getting information on ERP systems that isn't a bunch of business jargon is next to impossible.
我想知道是否有一个对开发人员更友好的 ERP。我已经研究过 Microsoft Dynamics,但几乎不可能获得关于 ERP 系统的信息,而这些信息不是一堆商业术语。
I will be using C# 3.whatever and .NET MVC.
我将使用 C# 3.whatever 和 .NET MVC。
采纳答案by Nathan Birkes
MS Dyanamics is very cool app. V3 was fully Web Serviced V4 i assume even more- all actions are exposed as webservices, there is a big license hit on MS CRM due to "internet" licensing.
MS Dynamics 是非常酷的应用程序。V3 是完全 Web 服务的 V4 我假设更多 - 所有操作都作为 Web 服务公开,由于“互联网”许可,MS CRM 受到了很大的许可。
We use CRMv3 in a totally .NET SOA here and its great.
我们在这里完全使用 .NET SOA 中的 CRMv3,它很棒。
You should have no problems doing the integration - security aside =>
您在进行集成时应该没有问题 - 除了安全性 =>
回答by Rory MacLeod
I've done a bit of integration between ASP.NET and Dynamics AX4 - it has a .NET API called Business Connector that gives you access to AX's full internal object model - if AX does it, your web app can do it too. My app had to execute arbitrary AX business logic functions and, apart from the crummy API documentation (I've been spoiled by MSDN), it was all pretty easy. The Business Connector is the lowest-level API - there's a bunch of web service options as well that work at a higher level.
我在 ASP.NET 和 Dynamics AX4 之间做了一些集成——它有一个名为 Business Connector 的 .NET API,可以让你访问 AX 的完整内部对象模型——如果 AX 做到了,你的 Web 应用程序也可以做到。我的应用程序必须执行任意的 AX 业务逻辑函数,除了糟糕的 API 文档(我被 MSDN 宠坏了)之外,一切都非常简单。Business Connector 是最低级别的 API - 还有一堆 Web 服务选项可以在更高级别工作。
回答by Rory MacLeod
When you talk about Microsoft Dynamics, it sounds a bit like you are talking about a specific product. However there are close to 10 different systems in the Dynamics line-up from Microsoft and at least 6 of them are different ERP system, all with different functionalities and extendabilities. The new verions of Microsoft Dynamics AX as well as Microsoft Dynamics NAV, have Web service support out of the box.
当您谈论 Microsoft Dynamics 时,听起来有点像您在谈论特定产品。然而,Microsoft 的 Dynamics 阵容中有近 10 个不同的系统,其中至少有 6 个是不同的 ERP 系统,所有系统都具有不同的功能和可扩展性。Microsoft Dynamics AX 和 Microsoft Dynamics NAV 的新版本具有开箱即用的 Web 服务支持。
I hope this helps.
我希望这有帮助。