Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing xml document to asp page in biztalk

Status
Not open for further replies.

BlackBox

Programmer
Feb 21, 2001
10
0
0
BE
I use vb6 wit folowing code to send XML document to receivestandard.asp page in Biztalk server.

'Get Purchase order from commerce server into xml
Dim oXML3 As New MSXML2.DOMDocument
sFilePath = "c:\POTest\PO.xml"
oXML3.async = False
oXML3.Load sFilePath

'Send PO.XML to Biztalk
Dim XMLHTTP As New MSXML2.XMLHTTP
XMLHTTP.open "Post"," True
XMLHTTP.Send (oXML3.xml)

Why doesn't biztalk react? can anyone send me some examples on how to pass xml to an asp page. How do you code your asp page that receives the xml document?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top