Einzelnen Beitrag anzeigen

niko022

Registriert seit: 2. Okt 2007
46 Beiträge
 
#5

Re: Mit HTTP und SSL zugriff auf einen Webservice über Indy

  Alt 30. Jul 2008, 09:33
Ein Bsp. Code den ich gefunden habe (Visual Studio).
Code:
...

' create the object that manages the communication
Dim oXMLHttp As XMLHTTP
Set oXMLHttp = New XMLHTTP

' prepare the HTTP POST request
oXMLHttp.open "POST", "https://www.server.com/path", False
oXMLHttp.setRequestHeader "Content-Type", _

"application/x-www-form-urlencoded"
' send the request
oXMLHttp.send requestString

' server's response will be available in oXMLHttp.responseXML
oXMLHttp.responseXML

...
  Mit Zitat antworten Zitat