Dim xml As NewChilkat.Xml
xml.Tag = "soapenv:Envelope"
xml.AddAttribute("xmlns:pep","http://peppol.helger.com/ws/documentvalidationservice/201701/")
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
xml.UpdateChildContent("soapenv:Header","")
xml.UpdateAttrAt("soapenv:Body|pep:validateRequestInput",True,"VESID","?")
xml.UpdateAttrAt("soapenv:Body|pep:validateRequestInput",True,"displayLocale","?")
xml.UpdateChildContent("soapenv:Body|pep:validateRequestInput|pep:XML","string")
' In a SOAP HTTP request, including the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) in the XML body is generally not required.
xml.EmitXmlDecl = FalseDim soapRequestBody As String = xml.GetXml()
Dim endpoint As String = "https://peppol.helger.com/wsdvs"Dim soapAction As String = "validate"' For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"Dim contentType As String = "text/xml"Dim http As NewChilkat.Http
http.ClearHeaders()
http.SetRequestHeader("Content-Type",contentType)
http.SetRequestHeader("SOAPAction",soapAction)
Dim resp AsChilkat.HttpResponse = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Debug.WriteLine("Failed to send SOAP request.")
Exit SubEnd If' Get the XML response body.Dim responseXml As NewChilkat.Xml
resp.GetBodyXml(responseXml)
Dim statusCode As Integer = resp.StatusCode
Debug.WriteLine("response status code: " & statusCode)
' If the status code does not indicate succcess, then show the response XML,
' which probably contains error information.If (statusCode <> 200) Then
Debug.WriteLine(responseXml.GetXml())
Exit SubEnd If
Debug.WriteLine(responseXml.GetXml())
' Parse the successful SOAP response XML.' This is a sample of the response XML, but the namespace prefixes will be different.
' We can parse the result using "*" for the namespace prefixes (see below).Dim validateResponseOutput_success As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(success)")
Dim validateResponseOutput_interrupted As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(interrupted)")
Dim validateResponseOutput_mostSevereErrorLevel As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(mostSevereErrorLevel)")
Dim Result_success As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(success)")
Dim Result_artifactType As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(artifactType)")
Dim Result_artifactPath As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(artifactPath)")
Dim Item_errorLevel As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLevel)")
Dim Item_errorID As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorID)")
Dim Item_errorFieldName As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorFieldName)")
Dim Item_errorLocation As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLocation)")
Dim Item_errorText As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorText)")
Dim Item_test As String = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(test)")
Dim Exception As String = responseXml.GetChildContent("*:Body|*:validateResponseOutput|*:Result|*:Item|*:Exception")