|
Home > Archive > BizTalk Server > April 2005 > How to consume a webservice which returns a dataset
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 |
How to consume a webservice which returns a dataset
|
|
|
| Hi,
I have a webservice which return a dataset. But Biztalk cannot figure it as
reference.xsd in schema, is there any alternative solution like object array
or sth else?
Thanks,
jason
| |
| CurtisH 2005-04-01, 5:54 pm |
| >From what I understand, most dealings with datasets via orchestration
have to take place in GAC'd helper components. XLANGs (the lang orch's
use) doesn't support array constructs, which one uses constantly when
dealing with datasets. You can create a variable that is a dataset,
populate your var with the message recieved from your WS, and then pass
it to your helper component (via an expression shape) where you can
manipulate, work with, or extract data from it.
That's how I've come to see it anyhow. Good luck!
| |
|
| thanks a lot.
Jason
"CurtisH" <curtis.herrick@schwans.com> wrote in message
news:1112365086.372229.253390@z14g2000cwz.googlegroups.com...
> have to take place in GAC'd helper components. XLANGs (the lang orch's
> use) doesn't support array constructs, which one uses constantly when
> dealing with datasets. You can create a variable that is a dataset,
> populate your var with the message recieved from your WS, and then pass
> it to your helper component (via an expression shape) where you can
> manipulate, work with, or extract data from it.
>
> That's how I've come to see it anyhow. Good luck!
>
|
|
|
|
|