|
Home > Archive > BizTalk Server Orchestration > August 2004 > How to Receive Flat File
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 Receive Flat File
|
|
|
| Hi
I have a file with .edi extension. I want to receive this file into my
Orchestration as
string. So that i can manipulate it according to requirements.
For this i created the receive with message type as system.string.
When orchestration runs It gives the error
:Could not find a matching subscription for the message. . This error occurs
if the subscribed orchestration schedule or send port has not been started,
or if some of the message properties necessary for subscription evaluation
have not been promoted
Pls help me in solving this
| |
| Yossi Dahan 2004-08-12, 5:50 pm |
| I believe you need to set a filter on your receive shape in the
orchestration set to receive everything from the receive port you have.
Once the orchestration is enlisted you will have a subscription for the
messages
Yossi Dahan
"Raju" <Raju@discussions.microsoft.com> wrote in message
news:05BF255F-9434-4AC2-B2F1-57D2876D6BCB@microsoft.com...
> Hi
>
> I have a file with .edi extension. I want to receive this file into my
> Orchestration as
> string. So that i can manipulate it according to requirements.
> For this i created the receive with message type as system.string.
> When orchestration runs It gives the error
>
> :Could not find a matching subscription for the message. . This error
occurs
> if the subscribed orchestration schedule or send port has not been
started,
> or if some of the message properties necessary for subscription evaluation
> have not been promoted
>
> Pls help me in solving this
| |
| Brian Loesgen 2004-08-13, 8:46 pm |
| Raju:
The normal way to do this is to create a schema for your flatfile (by adding
the flatfile schema editor extension). Once you have it in your
orchestration you can manipulate it, or, as you probably need (my guess),
map it to another schema. The target schema could be a flat file too.
The error message is just what it says: a message is being received and a
subscriber can't be identified, so it rightly gets suspended and an error is
logged.
There are samples in the SDK for this.
HTH,
Brian
BizTalk Server 2004 MVP
"Raju" <Raju@discussions.microsoft.com> wrote in message
news:05BF255F-9434-4AC2-B2F1-57D2876D6BCB@microsoft.com...
> Hi
>
> I have a file with .edi extension. I want to receive this file into my
> Orchestration as
> string. So that i can manipulate it according to requirements.
> For this i created the receive with message type as system.string.
> When orchestration runs It gives the error
>
> :Could not find a matching subscription for the message. . This error
occurs
> if the subscribed orchestration schedule or send port has not been
started,
> or if some of the message properties necessary for subscription evaluation
> have not been promoted
>
> Pls help me in solving this
|
|
|
|
|