Vaibhav Verma
Vaibhav Verma

Reputation: 67

Cannot see BizTalk pipeline assembly dependencies in BizTalk Admin Console

We have a BizTalk Pipeline which uses a custom pipeline component. There are various assembly versions of the pipeline component available and we wanted to know the version with which this pipeline was compiled with. We loaded the pipeline in the resources (Add as BizTalk Assemblies and Resources, tried both ), but the dependencies tab does not show any component dependencies. Tried with other Pipeline Projects as well to verify if this behaviour is exhibited by all other pipelines as well. And found it be true. Is this an expected behaviour or am I missing something.

Version - BizTalk Server 2013 / Windows Server 2012

Upvotes: 0

Views: 427

Answers (1)

Dijkgraaf
Dijkgraaf

Reputation: 11527

The same behaviour occurs in BizTalk 2013 R2. It only shows which Send Ports or Receive Ports use the Pipeline, but the Using: section is blank and does not show you what Pipeline Components are referenced.

You can go the the Send & Receive Ports themselves and see the component names there, but that will not show you what version it is using.

If your different versions of the Pipeline Component have the same Strong Name Key and only differ in the assembly version number then it will either use the latest version from the GAC, or if not found in the GAC it will use the version in the Pipeline Components folder.

Also see this blog Find BizTalk Pipeline Component References

Upvotes: 2

Related Questions