I have to set up a SSL connection from my client application(vb6.0) sending XML documents to some business partner. I got some certificates(4) from this partner & installed it on the computer (by simply double clicking it) where the program runs on.
No matter what else I do, I cannot get it to work and I get an "The server returnned an invalid or unrecognized responce " error.
Can anybody help me out, possibly with a step by step description on what to
do?
Following is the code i m using
'
Dim objDom As New MSXML2.DOMDocument
Dim objXmlHttp As New MSXML2.ServerXMLHTTP40
objDom.async = False
objDom.LoadXml strXML
objXmlHttp.open "POST", strURL, False
objXmlHttp.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
objXmlHttp.setRequestHeader "SOAPAction", strSoapAction
objXmlHttp.setOption 3, "CURRENT_USER\My\tibgwp1.emiratesbank.com"
objXmlHttp.send objDom.xml 'here i got error
Set objDom = objXmlHttp.responseXML
'---
2006-12-27
05:11:29
·
1 answers
·
asked by
mahesh-a
1
in
Computers & Internet
➔ Software