|
Home > Archive > BizTalk Server Applications Integration > April 2005 > Biztalk Custom Adapter
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 |
Biztalk Custom Adapter
|
|
| surjith 2005-04-09, 2:47 am |
| Hi Guys,
I am currently making Biztalk Custom Adapter, the Schame has two nodes
(Request and Response). The Request is mapped to the Adapter Request and
Response to the Adapter Resppnse.
I would like to know, In the Custom Adpater How can we come the Response XML
we have to send it in a format that of the Response node(The Response Node
will chnage from Implemenation to Implementation)?
Thanks
Surjith
| |
|
|
If you made a request response adapter, there should be a something in the
transmit adapter (mine is in the batch file)
there is an output variable: out Stream ResponseStream
and at the bottom....
if (getResponse)
{
byte []ResponseBuf = outputMsg;
ResponseStream = new MemoryStream(ResponseBuf);
}
"surjith" <surjith@discussions.microsoft.com> wrote in message
news:3D0A06EC-7D2C-4750-B176-B00663FECEA7@microsoft.com...
> Hi Guys,
>
> I am currently making Biztalk Custom Adapter, the Schame has two nodes
> (Request and Response). The Request is mapped to the Adapter Request and
> Response to the Adapter Resppnse.
>
> I would like to know, In the Custom Adpater How can we come the Response
> XML
> we have to send it in a format that of the Response node(The Response Node
> will chnage from Implemenation to Implementation)?
>
> Thanks
> Surjith
|
|
|
|
|