| Author |
Message |
SuperOrion
Guest
|
Posted:
Sat Oct 09, 2004 5:08 am Post subject:
Commerce Server 2002 vs BizTalk 2004 |
|
|
Hi,
How can I import catalog data in Commerce Server using
BizTalk Server 2004 ?
Thanks
SuperOrion |
|
| Back to top |
|
 |
Maria Quian [MSFT]
Guest
|
Posted:
Sat Oct 09, 2004 7:45 pm Post subject:
RE: Commerce Server 2002 vs BizTalk 2004 |
|
|
Thank you for using Microsoft Newsgroups.
Do you currently have a configuration setup to exchange catalogs with your
vendor using BizTalk 2002 and you want to upgrade to BizTalk 2004?
I have not setup a Commerce Server 2002 and BizTalk 2004 solution. If you
do not have a solution in place, I would recommend reviewing the Commerce
Server 2002 > Developer's Guide > Extending Commerce Server > Integrating
with BizTalk Server to get familiar with the steps required to setup an
environment to import catalogs from a vendor.
Otherwise, open a support incident and we can go ahead and setup the
environment. We can then verify if it is doable with the product versions
you are wanting to use and the updated steps for BizTalk 2004.
Maria Quian
Microsoft Technical Support
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2002 Microsoft Corporation. All rights
reserved. |
|
| Back to top |
|
 |
Jason Storey
Guest
|
Posted:
Sun Oct 10, 2004 7:04 am Post subject:
Re: Commerce Server 2002 vs BizTalk 2004 |
|
|
Different ways to do it but here is one
1) Generate an xdr from Commerce using the code in the help file.
2) Import the xdr into BizTalk. Do this using the generated
items-schema as it will need to convert it to an xsd (note you may have to
fix some of the definitions, for example datetime->dateTime) before you
import or you will receive errors.
3) At this point you can map to you catalog definition(s)
4) Use the API to import the generated XML file
"SuperOrion" <anonymous@discussions.microsoft.com> wrote in message
news:1b4001c4ad94$11c36680$a301280a@phx.gbl...
| Quote: | Hi,
How can I import catalog data in Commerce Server using
BizTalk Server 2004 ?
Thanks
SuperOrion |
|
|
| Back to top |
|
 |
SuperOrion
Guest
|
Posted:
Mon Oct 11, 2004 8:49 pm Post subject:
Re: Commerce Server 2002 vs BizTalk 2004 |
|
|
If I use API to import the generated XML file, should I create a custom
BizTalk 2004 Adapter ?
Thanks
SuperOrion
"Jason Storey" wrote:
| Quote: | Different ways to do it but here is one
1) Generate an xdr from Commerce using the code in the help file.
2) Import the xdr into BizTalk. Do this using the generated
items-schema as it will need to convert it to an xsd (note you may have to
fix some of the definitions, for example datetime->dateTime) before you
import or you will receive errors.
3) At this point you can map to you catalog definition(s)
4) Use the API to import the generated XML file
"SuperOrion" <anonymous@discussions.microsoft.com> wrote in message
news:1b4001c4ad94$11c36680$a301280a@phx.gbl...
Hi,
How can I import catalog data in Commerce Server using
BizTalk Server 2004 ?
Thanks
SuperOrion
|
|
|
| Back to top |
|
 |
Jason Storey
Guest
|
Posted:
Mon Oct 11, 2004 11:20 pm Post subject:
Re: Commerce Server 2002 vs BizTalk 2004 |
|
|
You can SO but it will require that you have the CS API on your BizTalk
server or at least referenced.
Here are some different scenarios to consider
1) Use a scheduled task on the CS boxes to pick up the XML file that BizTalk
will deliver to it. This scheduled task will call a vbs script that call
the ImportXML method
(http://msdn.microsoft.com/library/en-us/csvr2002/htm/cs_rp_catalogmanager_zbhs_c.asp?frame=true).
This is pretty simple and keeps the DLL dependency out of the picture.
2) If you have the CatalogManager API available to a BizTalk group, you can
also do this within a BizTalk Expression. Things you may want to consider
are how often this process will occur and when.
3) The adapter from a design standpoint probably one of the cleanest, but
again requires a DLL dependency so check and see how your licensing
accommodates this.
4) BizDesk or FP1 Catalog Manager are the UI's you can use to do this task
with.
"SuperOrion" <SuperOrion@discussions.microsoft.com> wrote in message
news:E1D1AEC5-FDFC-43DC-8C58-04017881EC8F@microsoft.com...
| Quote: | If I use API to import the generated XML file, should I create a custom
BizTalk 2004 Adapter ?
Thanks
SuperOrion
"Jason Storey" wrote:
Different ways to do it but here is one
1) Generate an xdr from Commerce using the code in the help file.
2) Import the xdr into BizTalk. Do this using the generated
items-schema as it will need to convert it to an xsd (note you may have
to
fix some of the definitions, for example datetime->dateTime) before you
import or you will receive errors.
3) At this point you can map to you catalog definition(s)
4) Use the API to import the generated XML file
"SuperOrion" <anonymous@discussions.microsoft.com> wrote in message
news:1b4001c4ad94$11c36680$a301280a@phx.gbl...
Hi,
How can I import catalog data in Commerce Server using
BizTalk Server 2004 ?
Thanks
SuperOrion
|
|
|
| Back to top |
|
 |
Ravi Shankar
Guest
|
Posted:
Tue Oct 12, 2004 8:43 pm Post subject:
Re: Commerce Server 2002 vs BizTalk 2004 |
|
|
With BTS2004 you can directly call WebServices... For catalog in FP1, the
Catalog Manager is a Web Service which provides the ImportXML facility. So in
your BTS orchestration add the catalog schema for Commerce Server, add the
incoming schema for the catalog, do the map and call the CatalogWebService on
your commerce server machine....
No license violation there.
"Jason Storey" wrote:
| Quote: | You can SO but it will require that you have the CS API on your BizTalk
server or at least referenced.
Here are some different scenarios to consider
1) Use a scheduled task on the CS boxes to pick up the XML file that BizTalk
will deliver to it. This scheduled task will call a vbs script that call
the ImportXML method
(http://msdn.microsoft.com/library/en-us/csvr2002/htm/cs_rp_catalogmanager_zbhs_c.asp?frame=true).
This is pretty simple and keeps the DLL dependency out of the picture.
2) If you have the CatalogManager API available to a BizTalk group, you can
also do this within a BizTalk Expression. Things you may want to consider
are how often this process will occur and when.
3) The adapter from a design standpoint probably one of the cleanest, but
again requires a DLL dependency so check and see how your licensing
accommodates this.
4) BizDesk or FP1 Catalog Manager are the UI's you can use to do this task
with.
"SuperOrion" <SuperOrion@discussions.microsoft.com> wrote in message
news:E1D1AEC5-FDFC-43DC-8C58-04017881EC8F@microsoft.com...
If I use API to import the generated XML file, should I create a custom
BizTalk 2004 Adapter ?
Thanks
SuperOrion
"Jason Storey" wrote:
Different ways to do it but here is one
1) Generate an xdr from Commerce using the code in the help file.
2) Import the xdr into BizTalk. Do this using the generated
items-schema as it will need to convert it to an xsd (note you may have
to
fix some of the definitions, for example datetime->dateTime) before you
import or you will receive errors.
3) At this point you can map to you catalog definition(s)
4) Use the API to import the generated XML file
"SuperOrion" <anonymous@discussions.microsoft.com> wrote in message
news:1b4001c4ad94$11c36680$a301280a@phx.gbl...
Hi,
How can I import catalog data in Commerce Server using
BizTalk Server 2004 ?
Thanks
SuperOrion
|
|
|
| Back to top |
|
 |
|
|
|
|