|
Home > Archive > BizTalk Server Orchestration > February 2006 > Using Delay shape in an Orchestration
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 |
Using Delay shape in an Orchestration
|
|
|
| Hi everyone,
This is a basic problem, I have two local folders (Receive and Send).
In the receive folder, I receive tens of files and I would like to send them
with a gab of two minutes between each transmission and each transmission
only sends a single file.
In my orchestration, I have a A receive Port, Receive Shape
Then a Delay with an expression of ==> new System.TimeSpane(0,2,0);
and a send shape and a send port.
Yet, that does not work properly and still output all files at the same
time.
Any idea where I am goin wrong or any easier way of doin this?
Your help, comments, links or ideas are highly appreciated.
Thank you in advance,
Kam
| |
| Selvan 2006-02-17, 10:51 pm |
| Kam,
Try to set orchestration send port 'notification' property to
'transmitted', and run the process again.
HTH,
Selvan.
"Kam" wrote:
> Hi everyone,
>
> This is a basic problem, I have two local folders (Receive and Send).
>
> In the receive folder, I receive tens of files and I would like to send them
> with a gab of two minutes between each transmission and each transmission
> only sends a single file.
>
> In my orchestration, I have a A receive Port, Receive Shape
>
> Then a Delay with an expression of ==> new System.TimeSpane(0,2,0);
>
> and a send shape and a send port.
>
> Yet, that does not work properly and still output all files at the same
> time.
>
> Any idea where I am goin wrong or any easier way of doin this?
>
> Your help, comments, links or ideas are highly appreciated.
>
> Thank you in advance,
>
> Kam
>
>
>
|
|
|
|
|