Orchestration Design
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 > Orchestration Design




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

    Orchestration Design  
Arno


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


 
07-27-04 10:53 PM

Hi
I guess my question is due to the lack of experience of BizTalk (aren’t al
l questions here!)
I have a Microsoft Great Plains System Running. The system does typical Purc
hase Order and Sales Order Processing. I am playing with BT2k4 to implement
1) Get real time Stock Availability from suppliers (thus synchronous)
2) Direct Purchase Order Placing on supplier system (async is ok)

The problem I have is more from an architectural point-of-view. Obvious ever
y supplier has its own ways of dealing with 1) and 2) above (Soap for some, 
XML HTTP for others etc.)

So, my question is: How do I plan this solution? I thought this is quite an 
easy problem to solve for MULTIPLE suppliers, but ran into problems quite qu
ickly into the project.
Problem 1: In Great Plains, every inventory item is linked to one or more su
ppliers. So if I would query BT2k4, I would send a product code and a list o
f suppliers that needs to be queried:
Something like
<Query>
<Product>IXTY</Product>
<Suppliers>
<Supplier name=”Supplier1” />
<Supplier name=”Supplier2” />
<Supplier name=”Supplier3” />
</Suppliers>
</Query>

The 1st problem I ran into was:
Do I have 1 Generic “ProductAvailability” which will be an universal acc
ess point in the business (where all Stock Availability is instantiated), an
d a sub orchestration for every supplier (so I call the appropriate supplier
 orchestration from the mai
n orchestration)?
OR
Do I have multiple Supplier Orchestrations exposed as web services?

Help urgently required

Regards,
Arno








[ Post a follow-up to this message ]



    Re: Orchestration Design  
Matt Milner


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


 
07-27-04 10:53 PM

I'm not 100% sure I understand all that you are trying to do, but I'll give
it a shot:

It sounds like role links might be able to help out here.  These allow you
to define a role played by some partner in your orchestration. You could use
the Supplier ID to set the party on that role link.  Then, that parties send
port would be used to call them.  This allows you to use different
transports and, since you can apply maps in the send port, different request
messages to the supplier.

Where this might become problematic is when you have different request
patterns like one partner is solicit-response and the other is a combination
of two one way ports.  Or, if you need to call a web service for one and
http post for the other, you might have to do some pipeline work as well,
but I think it can be done.

The other thing to think about, or consider, rather than trying to create
direct connections between some parent orchestration and child
orchestrations or web services, is to publish messages directly to the
message box and have the sub orchestrations or send ports pick them up.
Then use correlation to receive back all of the responses you expect.

Sorry this isn't more clear, but hopefully this gives you some leads.

Matt


"Arno" <Arno@discussions.microsoft.com> wrote in message
news:7D81A7A9-1689-430A-A405-9717F8B2500D@microsoft.com...
> Hi
> I guess my question is due to the lack of experience of BizTalk (aren't
all questions here!)
> I have a Microsoft Great Plains System Running. The system does typical
Purchase Order and Sales Order Processing. I am playing with BT2k4 to
implement
> 1) Get real time Stock Availability from suppliers (thus synchronous)
> 2) Direct Purchase Order Placing on supplier system (async is ok)
>
> The problem I have is more from an architectural point-of-view. Obvious
every supplier has its own ways of dealing with 1) and 2) above (Soap for
some, XML HTTP for others etc.)
>
> So, my question is: How do I plan this solution? I thought this is quite
an easy problem to solve for MULTIPLE suppliers, but ran into problems quite
quickly into the project.
> Problem 1: In Great Plains, every inventory item is linked to one or more
suppliers. So if I would query BT2k4, I would send a product code and a list
of suppliers that needs to be queried:
> Something like
> <Query>
> <Product>IXTY</Product>
> <Suppliers>
> <Supplier name="Supplier1" />
> <Supplier name="Supplier2" />
> <Supplier name="Supplier3" />
> </Suppliers>
> </Query>
>
> The 1st problem I ran into was:
> Do I have 1 Generic "ProductAvailability" which will be an universal
access point in the business (where all Stock Availability is instantiated),
and a sub orchestration for every supplier (so I call the appropriate
supplier orchestration from the main orchestration)?
> OR
> Do I have multiple Supplier Orchestrations exposed as web services?
>
> Help urgently required
>
> Regards,
> Arno
>
>
>







[ Post a follow-up to this message ]



    Re: Orchestration Design  
Arno


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


 
07-28-04 07:55 AM

Thanks Matt
I am reading through the SDK examples and find your lead quite useful. Sound
s like role links will be spot on. I am in the process of setting up a small
 example with it.
Thanks for your help
a-

"Matt Milner" wrote:

> I'm not 100% sure I understand all that you are trying to do, but I'll giv
e
> it a shot:
>
> It sounds like role links might be able to help out here.  These allow you
> to define a role played by some partner in your orchestration. You could u
se
> the Supplier ID to set the party on that role link.  Then, that parties se
nd
> port would be used to call them.  This allows you to use different
> transports and, since you can apply maps in the send port, different reque
st
> messages to the supplier.
>
> Where this might become problematic is when you have different request
> patterns like one partner is solicit-response and the other is a combinati
on
> of two one way ports.  Or, if you need to call a web service for one and
> http post for the other, you might have to do some pipeline work as well,
> but I think it can be done.
>
> The other thing to think about, or consider, rather than trying to create
> direct connections between some parent orchestration and child
> orchestrations or web services, is to publish messages directly to the
> message box and have the sub orchestrations or send ports pick them up.
> Then use correlation to receive back all of the responses you expect.
>
> Sorry this isn't more clear, but hopefully this gives you some leads.
>
> Matt
>
>
> "Arno" <Arno@discussions.microsoft.com> wrote in message
> news:7D81A7A9-1689-430A-A405-9717F8B2500D@microsoft.com... 
> all questions here!) 
> Purchase Order and Sales Order Processing. I am playing with BT2k4 to
> implement 
> every supplier has its own ways of dealing with 1) and 2) above (Soap for
> some, XML HTTP for others etc.) 
> an easy problem to solve for MULTIPLE suppliers, but ran into problems qui
te
> quickly into the project. 
> suppliers. So if I would query BT2k4, I would send a product code and a li
st
> of suppliers that needs to be queried: 
> access point in the business (where all Stock Availability is instantiated
),
> and a sub orchestration for every supplier (so I call the appropriate
> supplier orchestration from the main orchestration)? 
>
>
>





[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 11:16 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