Reputation: 177
I'm getting this error message when I submit the input file (which BizTalk eats up as expected)...
There was a failure executing the receive pipeline:
"FileName.BizTalk.Pipelines.Receive_ResponsePipeline,
FileName.BizTalk.Pipelines,
Version=1.0.0.0,
Culture=neutral,
PublicKeyToken=040e2e09e19196ce"
Source: "Unknown "
Receive Port: "rcv_Response"
URI: "C:\Data\drops\in\*.txt"
Reason: Could not load file or assembly 'file:///C:\Program Files (x86)\Microsoft
BizTalk Server 2013 R2\Pipeline Components\FileName.BizTalk.Core.dll' or one of its
dependencies. The system cannot find the file specified.
I checked that directory and the DLL it's looking for is there. I even rebuilt it from the solution along with all its dependencies.
Could this simply be a case of a corrupt file/installation or could it be something else?
The BizTalk solution builds with no issues and I was able to deploy to the BizTalk Server without issues.
Upvotes: 1
Views: 2378
Reputation: 20171
Here are the few check points that may be cause of issue:
Adapters-->File-->New-->Receive Handler
and check if the HostInstance
is added. Check Receive Location
and updated the Receive Handler property.aspnet_regiis.exe -I
" command against the correct version of aspnet_regiis (the v4.0 framework version). Sources:
Upvotes: 1
Reputation: 3266
To deploy a BizTalk pipeline component, you need to:
Make sure you restart the host instance(s) after deployment AND be sure to deploy it on all BizTalk servers within the BizTalk Group.
Upvotes: 1