by "Paul Somers[MVP]" <paul@[EMAIL PROTECTED]
>
Nov 5, 2008 at 10:09 AM
You can use the http adapter.
Construct a message/schema that is the same as the one you have detailed
for
the response.
It looks like its all query strings for the request, so you can use a
blank/fake message to send, as the message will be posted, it may be
ignored, if the web service/url is looking only for query string
parameters.
You can set the query string parameters by using a dynamic ****t, and
setting
the address in your orchestration.
Paul.
"Kevin" <Kevin@[EMAIL PROTECTED]
> wrote in message
news:AE7A69DD-006C-4D9C-A6E6-94EE1509E2A2@[EMAIL PROTECTED]
> Hi.
>
> I'm wondering if I can make a web call to a standard URL from Biztalk.
> The
> request looks like this.
> http://my.server.com/getinfo.py?parm1=8&parm2=9
> The response would be a smimple xml do***ent.
> <?xml version="1.0" encoding="utf-8" ?>
> <Parm3>Value3</Parm3>
> <Parm4>Value3</Parm4>
> <Parm5>Value3</Parm5>
>
> Can this be done?
>
> Kevin.