|
Home > Archive > BizTalk Server General > May 2006 > Is it an error in BizTalk???
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 |
Is it an error in BizTalk???
|
|
| Leonid Ganeline 2006-05-23, 7:15 pm |
| Hi,
Without success I've tried to deploy my binding file (using BizTalk
Deploying Wizard or BTSDeploy utility) with such node:
<PartyCollection>
...
<Party Name="VPA">
<Aliases>
<PartyAlias Name="Organization" Qualifier="OrganizationName"
Value="VPA" IsAutoCreated="true" />
<PartyAlias Name="VPA" Qualifier="GEN X12 A6"
Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="GEN X12 A6A"
Value="EDI://6046666086:12:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="CMA X12 A6"
Value="EDI://STERCOMMP:ZZ:A6" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="CMA X12 A6A"
Value="EDI://STERCOMMP:ZZ:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="COSCO X12 A6"
Value="EDI://YOWCECP1:ZZ:A6" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="COSCO X12 A6A"
Value="EDI://YOWCECP1:ZZ:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="HMM X12 A6"
Value="EDI://PORTVAN:ZZ:A6" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="HMM X12 A6A"
Value="EDI://PORTVAN:ZZ:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="NYK X12 A6"
Value="EDI://PORTVC:ZZ:A6" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="NYK X12 A6A"
Value="EDI://PORTVC:ZZ:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="APL EDIFACT"
Value="EDI://6046666086:12:" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="MAUE X12 A6A"
Value="EDI://KH01459:ZZ:A6A" IsAutoCreated="false" />
<PartyAlias Name="VPA" Qualifier="ZIM X12 A6A"
Value="EDI://ZIMHFX:ZZ:A6A" IsAutoCreated="false" />
</Aliases>
<SendPorts />
<SignatureCert xsi:nil="true" />
<CustomData xsi:nil="true" />
</Party>
....
In result I have deployed only the last Alias, under node:
<PartyAlias Name="VPA" Qualifier="ZIM X12 A6A"
Value="EDI://ZIMHFX:ZZ:A6A" IsAutoCreated="false" />
Is it an error in BizTalk deployment tools or is it my error?
--
Regards,
Leonid Ganeline
BizTalk Solution Developer
===================================
BizTalk Blog -- http://geekswithblogs.net/leonidganeline
| |
| Greg Forsythe 2006-05-24, 7:15 am |
| Leonid,
Unfortunately it is your error.
The PartyAlias Name attribute is the name of the PartyAlias not the Party.
Each PartyAlias must have a unique name.
You are effectively overwriting each PartyAlias with a subsequent one and
this is why you end up with only the last PartyAlias
It should be something like this:
<PartyAlias Name="Organization" Qualifier="OrganizationName" Value="VPA"
IsAutoCreated="true" />
<PartyAlias Name="GENX12A6" Qualifier="GEN X12 A6"
Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
<PartyAlias Name="GENX12A6A" Qualifier="GEN X12 A6"
Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
....
Greg
"Leonid Ganeline" <leo_gan_57@hotmail.com> wrote in message
news:eZM%23nCsfGHA.2188@TK2MSFTNGP04.phx.gbl...
> Hi,
> Without success I've tried to deploy my binding file (using BizTalk
> Deploying Wizard or BTSDeploy utility) with such node:
>
> <PartyCollection>
> ...
> <Party Name="VPA">
> <Aliases>
> <PartyAlias Name="Organization" Qualifier="OrganizationName"
> Value="VPA" IsAutoCreated="true" />
> <PartyAlias Name="VPA" Qualifier="GEN X12 A6"
> Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="GEN X12 A6A"
> Value="EDI://6046666086:12:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="CMA X12 A6"
> Value="EDI://STERCOMMP:ZZ:A6" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="CMA X12 A6A"
> Value="EDI://STERCOMMP:ZZ:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="COSCO X12 A6"
> Value="EDI://YOWCECP1:ZZ:A6" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="COSCO X12 A6A"
> Value="EDI://YOWCECP1:ZZ:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="HMM X12 A6"
> Value="EDI://PORTVAN:ZZ:A6" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="HMM X12 A6A"
> Value="EDI://PORTVAN:ZZ:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="NYK X12 A6"
> Value="EDI://PORTVC:ZZ:A6" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="NYK X12 A6A"
> Value="EDI://PORTVC:ZZ:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="APL EDIFACT"
> Value="EDI://6046666086:12:" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="MAUE X12 A6A"
> Value="EDI://KH01459:ZZ:A6A" IsAutoCreated="false" />
> <PartyAlias Name="VPA" Qualifier="ZIM X12 A6A"
> Value="EDI://ZIMHFX:ZZ:A6A" IsAutoCreated="false" />
> </Aliases>
> <SendPorts />
> <SignatureCert xsi:nil="true" />
> <CustomData xsi:nil="true" />
> </Party>
> ...
>
> In result I have deployed only the last Alias, under node:
> <PartyAlias Name="VPA" Qualifier="ZIM X12 A6A"
> Value="EDI://ZIMHFX:ZZ:A6A" IsAutoCreated="false" />
>
> Is it an error in BizTalk deployment tools or is it my error?
>
> --
> Regards,
>
> Leonid Ganeline
> BizTalk Solution Developer
> ===================================
> BizTalk Blog -- http://geekswithblogs.net/leonidganeline
>
| |
| Leonid Ganeline 2006-05-24, 1:14 pm |
| Thanks a lot Greg!
It is "fortunately" my error Otherwise I should deploy Parties manually.
BTW Even in BTS2006 Help there is no description of this "feature".
--
Regards,
Leonid Ganeline
BizTalk Solution Developer
===================================
BizTalk Blog -- http://geekswithblogs.net/leonidganeline
"Greg Forsythe" <greg.forsythe@gmail.com> wrote in message
news:OScyzEyfGHA.1320@TK2MSFTNGP04.phx.gbl...
> Leonid,
> Unfortunately it is your error.
> The PartyAlias Name attribute is the name of the PartyAlias not the Party.
> Each PartyAlias must have a unique name.
> You are effectively overwriting each PartyAlias with a subsequent one and
> this is why you end up with only the last PartyAlias
> It should be something like this:
> <PartyAlias Name="Organization" Qualifier="OrganizationName" Value="VPA"
> IsAutoCreated="true" />
> <PartyAlias Name="GENX12A6" Qualifier="GEN X12 A6"
> Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
> <PartyAlias Name="GENX12A6A" Qualifier="GEN X12 A6"
> Value="EDI://6046666086:12:A6" IsAutoCreated="false" />
> ...
>
> Greg
>
> "Leonid Ganeline" <leo_gan_57@hotmail.com> wrote in message
> news:eZM%23nCsfGHA.2188@TK2MSFTNGP04.phx.gbl...
>
>
|
|
|
|
|