|
Home > Archive > BizTalk Server General > August 2005 > How to submit XML file programmatically from ASP.NET page to Biztalk 2004?
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 submit XML file programmatically from ASP.NET page to Biztalk 2004?
|
|
| Paul Abraham 2005-07-04, 2:47 am |
| Hello, I am new to Biztalk 2004.
How to submit XML file programmatically from ASP.NET page to Biztalk
2004?
Please help.
Any resources for newbie?
| |
|
|
Paul,
In the SDK there are a few examples of using BizTalk with ASP.net
Look in the SDK under adapter and orchestrations which, if I remember
correct have HTTP samples.
BA
"Paul Abraham" <paulyau@gmail.com> wrote in message
news:1120451880.395300.263110@g43g2000cwa.googlegroups.com...
> Hello, I am new to Biztalk 2004.
>
> How to submit XML file programmatically from ASP.NET page to Biztalk
> 2004?
>
> Please help.
>
> Any resources for newbie?
>
| |
|
|
We do this all the time, you do not want to go calling code in asp.net to
insert the message into BizTalk, as you would need BizTalk assemblies
installed on the Asp.net box, not very good practice.
You can expose an orchestration as a web service and call that from
asp.net. Or the best and simplest way is to msmq send it to a queue that
BizTalk is listening on.
Paul.
"Paul Abraham" <paulyau@gmail.com> wrote in message
news:1120451880.395300.263110@g43g2000cwa.googlegroups.com...
> Hello, I am new to Biztalk 2004.
>
> How to submit XML file programmatically from ASP.NET page to Biztalk
> 2004?
>
> Please help.
>
> Any resources for newbie?
>
| |
| Paul Abraham 2005-07-05, 2:48 am |
| Yes, I need to include BizTalk assemblies within ASP.NET application in
order to call those functions.
If I want to send the message to the BizTalk Message Quening in the
program, I still need to include assemblies in the project.
How can I send messages to the MQ programmatically?
Paul Abraham
| |
| Paul Somers\(MVP\) 2005-07-05, 5:51 pm |
| MQ is MSMQ, standard msmq method from .net. Nothing new there. No
requirement for BizTalk to be installed, just MSMQ.
"Paul Abraham" <paulyau@gmail.com> wrote in message
news:1120546338.865842.127810@z14g2000cwz.googlegroups.com...
> Yes, I need to include BizTalk assemblies within ASP.NET application in
> order to call those functions.
>
> If I want to send the message to the BizTalk Message Quening in the
> program, I still need to include assemblies in the project.
>
> How can I send messages to the MQ programmatically?
>
> Paul Abraham
>
| |
| Paul Abraham 2005-08-04, 5:56 pm |
| I finally understand all the things, thanks all
|
|
|
|
|