Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
163 views

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 ...
1
vote
1answer
285 views

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 ...
1
vote
2answers
648 views

modify text in stream efficiently c#

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 ...
1
vote
2answers
1k views

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. ...
0
votes
1answer
86 views

BizTalk custom pipelinecomponent property call windows form

We have a custom pipeline component for BizTalk where we can set some properties (through the properties window). One of the properties makes use of a windows form (where the user can add some ...
0
votes
1answer
307 views

Adding Message Part dynamically in Receive Pipeline

I tried to create a custom pipeline component that takes a message and attaches additional another part dynamically (during Disassemble stage). I haven't set up a send port, so that I can see what ...