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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

attach certificate

Status
Not open for further replies.

maddy41

Programmer
Dec 7, 2004
13
GB
I have this code working to a point it posts an xml file to a server however i have to present my digital certificate to the server and dont know how to do this does any one know wher i start?
any direction would be greate.

_____________working_code________________________
Dim responsestr As String
Dim strURL As String = " Dim xmlPath As String = "C:\message.xml"
Dim xmlDoc As New MSXML2.DOMDocument40
Dim xmlHTTP As New MSXML2.ServerXMLHTTP40
If xmlDoc.load(xmlPath) Then
'Set method, url, async
xmlHTTP.open("POST", strURL, False)
'Send XML document
xmlHTTP.send(xmlDoc.xml)
responsestr = xmlHTTP.responseText
MessageBox.Show(xmlHTTP.responseText)
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top