Questions tagged [custom-pipeline-component]

Microsoft BizTalk or SSIS custom pipeline components

A custom pipeline components is a name used for custom components used in two integration products by Microsoft, BizTalk Server and SSIS (although in SSIS it is actually called a Custom Data Flow Component). It allows the developer to write custom code to do transformations of data to be run as part of a integration process.

33 questions
6
votes
3 answers

How can i modify text in a stream efficiently, in a BizTalk pipeline component?

I have a stream that contains text, now I want to edit some text (replace some values) in that stream. What is the most efficient way to do this, so without breaking the stream? I want to use this in a custom pipeline component for BizTalk. public…
Rise_against
  • 1,042
  • 3
  • 15
  • 36
6
votes
6 answers

Cause of SSIS Custom Dataflow Component Error - Cannot be upgraded

I have a very simple component which trims all leading and trailing spaces from (read/write) strings in a pipeline. As far as I can see, I only have one binary of this dll on my development machine. I am transferring it to another development…
Cade Roux
  • 88,164
  • 40
  • 182
  • 265
4
votes
1 answer

Angular 2: Set and remove custom pipes?

I've created three custom pipe to order data from server (ASC, DESC and Default), they work perfectly, I want that this three pipes active or not depending of the interaction of the user. The question is, It's posible change the custom pipe with a…
Danny908
  • 421
  • 2
  • 6
  • 20
4
votes
1 answer

BizTalk Server Threading in Receive Pipelines

I am building custom pipeline components for receive pipelines in BizTalk Server (2006 and 2009). I am building the components in a streaming fashion. My question: for any single inbound message, if I have a disassembling component, when I create n…
ToxicAvenger
4
votes
1 answer

PipelineBuffer does not release memory

I'm following this excellent post by Rainer Stropek on 1. creating a custom SSIS dataflow item & 2. pulling data from Azure table…
Nandun
  • 1,802
  • 2
  • 20
  • 35
3
votes
0 answers

BizTalk Custom Pipeline Component doesn't load overridden properties

I have a custom BizTalk 2013 R2 pipeline component that has several design-time properties defined. For some reason, BizTalk will load the design-time property values set in the VS pipeline designer but it ignores run-time values set in the BizTalk…
3
votes
2 answers

Store configurable values in SSO

I need to store configurable values in SSO, and at run time, retrieve them in a custom pipeline component Any help regarding this...
2
votes
1 answer

Transaction support when using OleDb connection manager in Custom SSIS Data Flow component

I've googled a lot and repeatedly stumbled upon a few articles which make me feel - this ain't gonna work! As per this…
ajeesh k
  • 93
  • 8
2
votes
2 answers

SSIS Custom Component: Having any IsSorted Property and output metadata

I have a Custom Synchronous Component that works fine and I use it. Recently, I sent some Sorted data from a sort component to it (or an IsSorted=true Source Component) but then i couldn't use the output as the input of a merge join due to not…
2
votes
1 answer

Split Flat Files into smaller files (on row count) using Custom Pipeline

I am trying to create a custom pipeline component for BizTalk 2010 that splits an incoming flat file into multiple smaller files. I want to split the file (lets say of ~30 000 rows) into files of about 5000 rows each or a bit less (lets say if the…
2
votes
1 answer

Possibility to Ignore warning in pipeline?

Here at the project we've set our projects to treat warnings as errors, but when setting that option on a BizTalk project we've noticed we had the following warning: Stage 'Validate' has multiple 'X' components. It is by design we put 2 the same…
msjonathan
  • 514
  • 2
  • 11
  • 26
2
votes
2 answers

How to force the current message to be suspended and be retried later on from within a custom BizTalk **send** pipeline component?

Here is my scenario. BizTalk needs to transfer a file from a shared/central document library. First BizTalk receives an incoming message with a reference/path to this document in the library. Then it simply needs to read it out from this library and…
François
  • 90
  • 8
1
vote
2 answers

Dynamic FTP Folder pipeline

I'm trying to set Dynamically the output folder of an FTP location. Assignment, for each customer I need to create a separate folder to store an Excel file and / or XML file. What I've tried Created a Custom Pipeline Component to set all the…
1
vote
1 answer

Producing two messages in BizTalk Send Port (From one input message)

I want to create two messages within a pipeline component and pass this onto the Assemble stage where it would go through the BTAHL7 Microsoft Accelerator. The pipeline component would be placed in the Send Pipeline 'Pre-Assemble' stage. This is the…
Dev
  • 119
  • 4
  • 16
1
vote
1 answer

biztalk custom pipelinecomponent split messages in send

Is it possible to create a custom pipelinecomponent that splits a message in 2 messages, but in the send port? I have seen that it is possible in the receive port using the disassembler interface, but can we use this in a send pipeline…
Rise_against
  • 1,042
  • 3
  • 15
  • 36
1
2 3