|
Home > Archive > BizTalk Server General > May 2004 > Delivery Notification Property
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 |
Delivery Notification Property
|
|
| Govalkar 2004-05-24, 7:35 am |
| Hi All
I am using BTS 2004 and its FTP Adapter and parallel shapes.
In each parallel shape I have a routine to FTP the file using FTP adapter and I have set the delivery notification property to transmitted. What I am trying to do is that while ftping if send fails, I am trying to catch the exception inside a catch block.
Inside catch block after getting necessary exceptrion info I am terminating it.
On both parallel shapes I am doind the above said process.
What happens is that if one shape fails that is after exception and catch block is executed it gets terminated. This stops the other shape also from executing.
I tried making it atomic scope etc., But no use.
Can anybody help me out in solving this problem.
Thanks in advance
| |
| Matt Milner 2004-05-24, 4:37 pm |
| Remove the terminate shape. Aftere you get the necessary information, just
let it continue. If you need to terminate after both finish, then end your
parallel shape and put your terminate there.
Matt
"Govalkar" <anonymous@discussions.microsoft.com> wrote in message
news:AE3EE88F-87D5-4B16-9F02-FB218FF665A6@microsoft.com...
> Hi All
>
> I am using BTS 2004 and its FTP Adapter and parallel shapes.
>
> In each parallel shape I have a routine to FTP the file using FTP adapter
and I have set the delivery notification property to transmitted. What I am
trying to do is that while ftping if send fails, I am trying to catch the
exception inside a catch block. Inside catch block after getting necessary
exceptrion info I am terminating it.
>
> On both parallel shapes I am doind the above said process.
>
> What happens is that if one shape fails that is after exception and catch
block is executed it gets terminated. This stops the other shape also from
executing.
>
> I tried making it atomic scope etc., But no use.
>
> Can anybody help me out in solving this problem.
>
> Thanks in advance
>
| |
| Christof 2004-05-24, 4:37 pm |
| Indeed... removing the terminate shape will keep your orchestration alive
:-)
You might consider using a suspend shape after the parallel. In combination
with a loop you even might make your orchestration restartable.
Kind regards,
Christof
"Govalkar" <anonymous@discussions.microsoft.com> wrote in message
news:AE3EE88F-87D5-4B16-9F02-FB218FF665A6@microsoft.com...
> Hi All
>
> I am using BTS 2004 and its FTP Adapter and parallel shapes.
>
> In each parallel shape I have a routine to FTP the file using FTP adapter
and I have set the delivery notification property to transmitted. What I am
trying to do is that while ftping if send fails, I am trying to catch the
exception inside a catch block. Inside catch block after getting necessary
exceptrion info I am terminating it.
>
> On both parallel shapes I am doind the above said process.
>
> What happens is that if one shape fails that is after exception and catch
block is executed it gets terminated. This stops the other shape also from
executing.
>
> I tried making it atomic scope etc., But no use.
>
> Can anybody help me out in solving this problem.
>
> Thanks in advance
>
|
|
|
|
|