|
Home > Archive > BizTalk Server Orchestration > July 2004 > Help me! WebService, in parameter: File
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 |
Help me! WebService, in parameter: File
|
|
| Evike 2004-07-19, 11:42 am |
| Hallo,
I'm beginner, please help me!
How can I communicate from a BizTalk Server 2004 orchestration
to an existing WebService, which has input parameter:
- integer
- file
Can I found an examples in SDK?
(With a WebService, with input parameter Class - can I).
Thanks! | |
| rnsdas 2004-07-20, 2:50 am |
| Hello Evike,
Orchestration can communicate with webservices quite easily.
As pointed out by you, if the schema is a simple type (int as mentioned by you) or if it is a multi-part (Class as mentioned by you), orch can invoke it.
I am particularly impressesed by the Web Seminars of MSDN for a beginner and I would definitely suggest that you can go through the following link:
http://www.microsoft.com/biztalk/ev...ntroduction.asp (Refer the Webcast : Using Web Services with BizTalk Server 2004). It shows how an Orch can connect to a Web Service.
Further , there is also a sample available in the SDK\Samples\Orchestrations\ConsumeWebSer
vice folder , which explains how to invoke a Web Service.
Hope this helps,
rnsdas
"Evike" wrote:
>
> Hallo,
> I'm beginner, please help me!
> How can I communicate from a BizTalk Server 2004 orchestration
> to an existing WebService, which has input parameter:
> - integer
> - file
> Can I found an examples in SDK?
> (With a WebService, with input parameter Class - can I).
> Thanks!
>
>
>
> --
> Evike
> ------------------------------------------------------------------------
> Posted via http://www.webservertalk.com
> ------------------------------------------------------------------------
> View this thread: http://www.webservertalk.com/message313760.html
>
>
| |
| rnsdas 2004-07-20, 2:50 am |
| Hello Evike,
Orchestration can communicate with webservices quite easily.
As pointed out by you, if the schema is a simple type (int as mentioned by you) or if it is a multi-part (Class as mentioned by you), orch can invoke it.
I am particularly impressesed by the Web Seminars of MSDN for a beginner and I would definitely suggest that you can go through the following link:
http://www.microsoft.com/biztalk/ev...ntroduction.asp (Refer the Webcast : Using Web Services with BizTalk Server 2004). It shows how an Orch can connect to a Web Service.
Further , there is also a sample available in the SDK\Samples\Orchestrations\ConsumeWebSer
vice folder , which explains how to invoke a Web Service.
Hope this helps,
rnsdas
"Evike" wrote:
>
> Hallo,
> I'm beginner, please help me!
> How can I communicate from a BizTalk Server 2004 orchestration
> to an existing WebService, which has input parameter:
> - integer
> - file
> Can I found an examples in SDK?
> (With a WebService, with input parameter Class - can I).
> Thanks!
>
>
>
> --
> Evike
> ------------------------------------------------------------------------
> Posted via http://www.webservertalk.com
> ------------------------------------------------------------------------
> View this thread: http://www.webservertalk.com/message313760.html
>
>
| |
|
| Thank you very much for this Information!
I need some more details information. Can you help?
a.) I try to communicate to a Webservice with a simple type
(f.e.: int).
[WebMethod]
public string HelloWorld(int nr)
{
return "Hello World " + nr;
}
In the orchestration:
I create a message (ToWebServiceInt_Instance), that I would like to send to the WebService.
Type is: Web Message Type
btWebServiceDan.localhost.DanService_.HelloWorld_request
How can I map an integer value to this message?
In the orchestration I use Transform:
But in the Destination I can choose only:
btWebServiceDan.localhost.DanService_.HelloWorld_request
and not
btWebServiceDan.localhost.DanService_.HelloWorld_request.nr
b.)
I shell make a simple FILE transformation with BizTalk Server 2004:
The files comming in and without any changes they must be passed to a WebService. I don'nt know the schema of this files.
and they can be different.
How can I define an incomming message without to know the schema?
How can I pass it to the WebService? (Problem like the (a.))
Thanks a lot in advance!
quote: Originally posted by rnsdas
Hello Evike,
Orchestration can communicate with webservices quite easily.
As pointed out by you, if the schema is a simple type (int as mentioned by you) or if it is a multi-part (Class as mentioned by you), orch can invoke it.
I am particularly impressesed by the Web Seminars of MSDN for a beginner and I would definitely suggest that you can go through the following link:
http://www.microsoft.com/biztalk/ev...ntroduction.asp (Refer the Webcast : Using Web Services with BizTalk Server 2004). It shows how an Orch can connect to a Web Service.
Further , there is also a sample available in the SDK\Samples\Orchestrations\ConsumeWebSer
vice folder , which explains how to invoke a Web Service.
Hope this helps,
rnsdas
"Evike" wrote:
>
> Hallo,
> I'm beginner, please help me!
> How can I communicate from a BizTalk Server 2004 orchestration
> to an existing WebService, which has input parameter:
> - integer
> - file
> Can I found an examples in SDK?
> (With a WebService, with input parameter Class - can I).
> Thanks!
>
>
>
> --
> Evike
> ------------------------------------------------------------------------
> Posted via http://www.webservertalk.com
> ------------------------------------------------------------------------
> View this thread: http://www.webservertalk.com/message313760.html
>
>
|
|
|
|
|