|
Home > Archive > BizTalk Server Orchestration > September 2004 > How to save messages?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to save messages?
|
|
| MichaelS 2004-09-22, 9:56 pm |
| Hi,
i need long-term memory to save incoming messages (1..n).
Is this possible without using external .NET components?
Thank you
Michael
| |
| Alan Smith 2004-09-22, 9:56 pm |
| Hi Michael,
Can you be more specific about where and how you want to save them. And how
long-tearm?
Regards,
Alan
"MichaelS" wrote:
> Hi,
>
> i need long-term memory to save incoming messages (1..n).
> Is this possible without using external .NET components?
>
> Thank you
> Michael
>
| |
| Todd Sussman 2004-09-22, 9:56 pm |
| You can use a pipeline component to save the file to a directory.
Todd
"Alan Smith" <AlanSmith@discussions.microsoft.com> wrote in message
news:05B85222-4E55-4DF5-A863-66F5869A3196@microsoft.com...[vbcol=seagreen]
> Hi Michael,
>
> Can you be more specific about where and how you want to save them. And
> how
> long-tearm?
>
> Regards,
>
> Alan
>
>
> "MichaelS" wrote:
>
| |
| MichaelS 2004-09-22, 9:56 pm |
| Hi Alan,
my task is to build a system that receives order messages.
A complete order consist of 1..n messages.
A new order is initialzed with a start and terminated
with a stop message (all usually received within seconds).
It would be nice to map the items from the actual order
message to an ArrayList of so far ordered items - but if
i use the mapping shape i always create a new message...
Can you help?
Thanks in advance,
rgds,
Michael
>-----Original Message-----
>Hi Michael,
>
>Can you be more specific about where and how you want to
save them. And how
>long-tearm?
>
>Regards,
>
>Alan
>
>
>"MichaelS" wrote:
>
(1..n).[vbcol=seagreen]
components?[vbcol=seagreen]
>.
>
| |
| Greg Forsythe 2004-09-22, 9:56 pm |
| You need a sequential convoy that aggregates the messages, there is an
excellent example at:
http://geekswithblogs.com/asmith/articles/9778.aspx
"MichaelS" <anonymous@discussions.microsoft.com> wrote in message
news:0bc001c4a0ba$0ea03c80$a401280a@phx.gbl...[vbcol=seagreen]
> Hi Alan,
>
>
> my task is to build a system that receives order messages.
> A complete order consist of 1..n messages.
> A new order is initialzed with a start and terminated
> with a stop message (all usually received within seconds).
>
> It would be nice to map the items from the actual order
> message to an ArrayList of so far ordered items - but if
> i use the mapping shape i always create a new message...
>
> Can you help?
>
> Thanks in advance,
> rgds,
> Michael
>
>
> save them. And how
> (1..n).
> components?
| |
| Alan Smith 2004-09-23, 9:20 am |
| Hi,
Looks like it's the way to go, you will need to use something a field (e.g.
OrderID) to correlate the messages to the correct orchestration, and use the
stop message to end the convoy. You need to make SURE that ALL the orders
arive at the orchestration BEFORE the stop message, some adapters like File
and FTP will not guarentee ordered delivery.
There's an udated version of the Sequential Convoy Aggregatro, with more
documentation, and some other message processing patterns here:
http://www.gotdotnet.com/Workspaces...6c-b28093ed7149
Regards,
Alan
"Greg Forsythe" wrote:
> You need a sequential convoy that aggregates the messages, there is an
> excellent example at:
> http://geekswithblogs.com/asmith/articles/9778.aspx
>
>
>
>
> "MichaelS" <anonymous@discussions.microsoft.com> wrote in message
> news:0bc001c4a0ba$0ea03c80$a401280a@phx.gbl...
>
>
>
|
|
|
|
|