我的 BizTalk 2006 R2 应用程序中缺少 EdiReceive 和 SendEdi 管道
我仍在学习 BizTalk 和 EDI。当我最初在现在的公司开始工作时,我继承了前任的计算机,因此很多配置已经就位。我最近买了一台新笔记本电脑,新的开发环境也快配置完成了。在我到达这里之前,没有关于如何设置开发环境的文档(我创建了这样一个文档,但它已经变得相当冗长)。
我似乎无法弄清楚的最后一个部分是 EdiRecieve 和 SendEdi 端口。它们位于我的旧开发环境中,但没有出现在我的新开发环境中。从我能够找到的 Google 垃圾箱潜水来看,它们存在于 Microsoft.BizTalk.Edi.EdiPipelines 中,但默认情况下似乎并未安装。我的问题是如何在我用于开发的主要 BizTalk 应用程序中获取这些内容?
另一个副业是,有一个 BizTalk EDI 应用程序显然是默认安装的,它确实具有我正在寻找的管道。我是否需要以某种方式引用该应用程序或其他内容?
我尝试过对 dll 进行 GAC 处理,但这似乎不起作用。
I am still learning BizTalk and EDI. When I originally started at my current company I inherited my predecessor's computer, so a lot of configuration was already in place. I recently got a new laptop, and have almost finished configuring the new development environment. There was no documentation on how to setup a dev environment before I got here (I have created such a document which has gotten rather lengthy).
The last piece I can't seem to figure out is the EdiRecieve and SendEdi ports. They are on my old dev environment but they do not appear on my new one. From what I have been able to turn up Google dumpster diving, they exist in the Microsoft.BizTalk.Edi.EdiPipelines but do not appear to be installed by default. My question is how do I get these in my primary BizTalk application I use for development?
Another sideline, there is a BizTalk EDI Application that is apparently installed by default that does have the pipelines I am looking for. Do I need to reference that application or something somehow?
I tried GAC'ing the dlls, but that hasn't seemed to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要添加对 EDI 应用程序的引用。为此,请按照以下步骤操作(取自 MSDN( http ://msdn.microsoft.com/en-us/library/bb226366(BTS.10).aspx))
在 BizTalk Server 管理控制台的“应用程序”节点下,右键单击该应用程序1. 指向“添加”,然后单击“引用”。
选择 BizTalk EDI 应用程序,然后单击“确定”。
您还可以在自己的自定义管道中使用构成管道的 EDI 组件(例如 EDIDissambler),您不仅限于开箱即用的管道 - 这是一件非常方便的事情,我花了一段时间才知道意识到。
You need to add a reference to the EDI application. To do this follow the steps below (taken from MSDN( http://msdn.microsoft.com/en-us/library/bb226366(BTS.10).aspx))
In the BizTalk Server Administration Console, under the Applications node, right-click the application that you want to use for EDI, such as BizTalk Application 1. Point to Add, and then click References.
Select BizTalk EDI Application, and then click OK.
You can also use the EDI components that make up the pipelines (e.g. the EDIDissambler) in your own custom pipelines, you are not limited to just the out of the box pipelines - this is a very handy thing to know that it took me a while to realise.