BizTalkComponents.PipelineComponents.LargeFileHandler 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BizTalkComponents.PipelineComponents.LargeFileHandler --version 1.0.0
NuGet\Install-Package BizTalkComponents.PipelineComponents.LargeFileHandler -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BizTalkComponents.PipelineComponents.LargeFileHandler" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BizTalkComponents.PipelineComponents.LargeFileHandler --version 1.0.0
#r "nuget: BizTalkComponents.PipelineComponents.LargeFileHandler, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BizTalkComponents.PipelineComponents.LargeFileHandler as a Cake Addin
#addin nuget:?package=BizTalkComponents.PipelineComponents.LargeFileHandler&version=1.0.0

// Install BizTalkComponents.PipelineComponents.LargeFileHandler as a Cake Tool
#tool nuget:?package=BizTalkComponents.PipelineComponents.LargeFileHandler&version=1.0.0

Build status

Large File Handler

Large File handler is a BizTalk based solution consists of two custom pipeline components serving large file transfer in BizTalk without sending the received file to MsgBox database. These components are:

  • Reset Message Body
  • Set Message Body From FileStream

Components

Reset Message Body

This component is to be used in the Decode stage, it will replace the message body with a simple xml <root/> and it will move the file to a temp folder under the same received file location. It updates the context property ReceivedFileName to refer to the new location of the received file (under the temp folder). The purpose of the using this component under <strong>Decode</strong> is to make sure that the received file will not be written to MsgBox.

Parameter Description Type Validation
Temp Folder An accepted folder name where the received files will moved to String Required, example TempFolder = Temp
Disabled Set to True to disable the component, default value = False Bool Required

Set Body From FileStream

This component is to be used in the Encode stage, it reads the ReceivedFileName context property and extracts the large file location, it replaces the message body with the FileStream for the large file, then the adapter used in the send port will manage to send out the large file stream.

Parameter Description Type Validation
Disabled Set to True to disable the component, default value = False Bool Required

Remarks

  • Tracking message bodies before the port processing in the receive port should not be checked.
  • Tracking message bodies after the port processing in the send port should not be checked.
  • Files moved to the temp folder must be deleted.

For further information about using these components, please visit Simplify-IT.info

Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 212 12/20/2023
1.0.0 127 12/17/2023

Initial release.