HI!
My Problem is that an error occurs if I run this program:
Dim docsend As New MSXML2.DOMDocument30
Dim httpOB As New MSXML2.XMLHTTP30
Dim pfad As String
docsend.async = False
pfad = "C:\order2.xml"
Call docsend.load(pfad)
Call httpOB.open("POST", "http:// - Server Link -", False)
Call httpOB.setRequestHeader("Content-Type", "application/x-www-form-urlencoded")
'Try
Call httpOB.send(docsend)
MsgBox(httpOB.responseXML.xml)
'Catch ex As Exception
' MsgBox(ex.Message)
'End Try
docsend = Nothing
httpOB = Nothing
The error:
'System.Runtime.InteropServices.COMException was unhandled
'ErrorCode = -1072896658
'Message = "System error: -1072896658. "
'Source = "msxml3.dll"
'StackTrace:
'bei MSXML2.XMLHTTP30Class.send(Object varBody)
'bei send.Form1.Button1_Click(Object sender, EventArgs e)
'in C:\Dokumente und Einstellungen\Dany\Desktop\project_xml\project\send\Form1.vb:Zeile 21.
'bei System.Windows.Forms.Control.OnClick(EventArgs e)
'bei System.Windows.Forms.Button.OnClick(EventArgs e)
'bei System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
'bei System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
The stacktrace is much more ... if u need it I´ll post it later.
The Program should send an Order (the xml-File) to the Server. The Server sends an Reply back.
Please help me!