Is it an error in BizTalk???
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > BizTalk Server > BizTalk Server General > Is it an error in BizTalk???




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Is it an error in BizTalk???  
Leonid Ganeline


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-24-06 12:15 AM

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







[ Post a follow-up to this message ]



    Re: Is it an error in BizTalk???  
Greg Forsythe


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-24-06 12:15 PM

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
>







[ Post a follow-up to this message ]



    Re: Is it an error in BizTalk???  
Leonid Ganeline


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
05-24-06 06: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... 
>
>







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 10:33 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register