|
Home > Archive > BizTalk Server Orchestration > November 2004 > HTTP Post
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]
|
|
|
| Hi ...
I have a HTTP adaptor that sends a Xml document to an URL. The problem is
the Post's return is the Http header info and the word "Done" (See below). My
question is, how do I assign that word to a variable/string message in my
orchestration?
Thanks
Arno
HTTP/1.1 200 OK
Server: Microsoft-IIS/5.0
Date: Mon, 15 Nov 2004 13:22:26 GMT
Content-Length: 4
Content-Type: text/html
Set-Cookie: ASPSESSIONIDCCTQSQQT=JMHLEAHCJKOLPIOKJAH
CMDID; path=/
Cache-control: private
Done
| |
| Devdutt Patnaik 2004-11-23, 5:55 pm |
| I'd write a pipeline component to take this HTTPResponse > Parse it > Create
a new Xml Message and pass it on. The Xml Schema that you use can have that
Done field as a promoted property so that you can access it in the Orch.
HTH
Dev
"Arno" <Arno@discussions.microsoft.com> wrote in message
news:0E01203B-08A9-4403-8C9B-640D18BB1F13@microsoft.com...
> Hi ...
> I have a HTTP adaptor that sends a Xml document to an URL. The problem is
> the Post's return is the Http header info and the word "Done" (See below).
My
> question is, how do I assign that word to a variable/string message in my
> orchestration?
> Thanks
> Arno
>
> HTTP/1.1 200 OK
> Server: Microsoft-IIS/5.0
> Date: Mon, 15 Nov 2004 13:22:26 GMT
> Content-Length: 4
> Content-Type: text/html
> Set-Cookie: ASPSESSIONIDCCTQSQQT=JMHLEAHCJKOLPIOKJAH
CMDID; path=/
> Cache-control: private
>
> Done
>
|
|
|
|
|