vb.net Epicor API 文档
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/19775182/
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
Epicor API Documentation
提问by Justin Kloth
Just wondering if anyone knows of any sort of comprehensive documentation for the C#/VB API for Epicor 9. Also, a reference the ABL (Progress OpenEdge) language would be helpful as well.
只是想知道是否有人知道 Epicor 9 的 C#/VB API 的任何类型的综合文档。此外,参考 ABL(Progress OpenEdge)语言也会有所帮助。
Thanks in advance
提前致谢
回答by Jensd
回答by palmik
Regarding the Epicor 9 API I personally do not know of any (good) documentation. In my opinion, the soap api was never really "designed" its just the Epicor internal functions straight off. The best way to figure out how to use the different Epicor API functions I've found so far (which is also working rather well):
关于 Epicor 9 API,我个人不知道任何(好的)文档。在我看来,soap api 从来没有真正“设计”过它只是直接的 Epicor 内部功能。找出如何使用迄今为止我发现的不同 Epicor API 函数的最佳方法(它也运行良好):
- Checkout the definition files available in your public www folder (or install them now) by just loading the API urls in your browser.
- Run a full trace from within Epicor 9 for the workflow or function you are trying to do via the API.
- Study the Epicor tracelog and do exactly the same api calls (in the same order) via the Epicor SOAP API.
- 只需在浏览器中加载 API url,即可查看公共 www 文件夹中可用的定义文件(或立即安装)。
- 在 Epicor 9 中为您尝试通过 API 执行的工作流或功能运行完整跟踪。
- 研究 Epicor 跟踪日志并通过 Epicor SOAP API 执行完全相同的 api 调用(以相同的顺序)。
Its a tedious process but once you started stacking the API calls from Epicor together into your own easier to use functions it starts getting rather painless.
这是一个乏味的过程,但是一旦您开始将来自 Epicor 的 API 调用堆叠到您自己的更易于使用的函数中,它就会变得相当轻松。
p.s. Please also check the ICE documentation for the business objects as such.
ps 请同时检查 ICE 文档以了解业务对象。
Best Mikael
最好的迈克尔

