I am new to BizTalk. I got a requirement as below.
Requirement is below:-
Source: Oracle (table). I created a generated schema in BizTalk.
Target: Webservice which receives "object array" (Table of source records from BizTalk) as an input.
Source and Target systems have same structure. Hence no mapping should be implemented. Logic should be in pipelines or orchestration.
Need info on below two topics:
- How to incorporate the logic in pipeline or orchestration to map data from source schema to target WS schema.
It's not very clear what you are asking for to be honest. Your requirement states that no mapping is required, but then you go on to ask how to incorporate mapping in pipeline or orchestrations.
A standard approach to delivering this would be;
Setup your input process from Oracle by using "Consume Adapter Service" from visual studio's "add generated item". Use the oracle binding, setup connection properties for typed polling along with your query (see here for an example on MS SQL) change to a service contract type (for inbound operations) and you'll get a set of schemas representing your dataset, and a binding for your type receive port poller.
Use "Consume WCF Service" to point to your "sending" web service and you'll get the schemas, binding and a helpful orchestration with port types add to your project
Create a simple map mapping your inbound oracle recordset schema to your web service schema - this should be pretty straight forward if they are identical, although I suspect you'll have to deal with multiple sets of data - depends on your data.
Complete by wiring together your orchestration.
I appreciate this is a high level view of what you need to do, but there are plenty of example you can google to get you started. Hope that helps.