SOAP WSDL Generate Code

WSDVSPortBinding / validate

ASP AutoIt C C (Unicode) C++ C++ (Unicode) C# DataFlex Delphi Foxpro Go Java Node.js Objective-C Perl PHP Extension PowerBuilder Powershell PureBasic Python CkPython Ruby SQL Server Swift TCL VB.NET VB6 VBScript Xojo
Dim xml As New Chilkat.Xml
xml.Tag = "soapenv:Envelope"
Dim success As Boolean
success = xml.AddAttribute("xmlns:pep","http://peppol.helger.com/ws/documentvalidationservice/201701/")
success = xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
xml.UpdateChildContent "soapenv:Header",""
success = xml.UpdateAttrAt("soapenv:Body|pep:validateRequestInput",True,"VESID","?")
success = 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 = False
Dim soapRequestBody As String
soapRequestBody = xml.GetXml()

Dim endpoint As String
endpoint = "https://peppol.helger.com/wsdvs"
Dim soapAction As String
soapAction = "validate"
//  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
Dim contentType As String
contentType = "text/xml"

Dim http As New Chilkat.Http

http.ClearHeaders 
http.SetRequestHeader "Content-Type",contentType
http.SetRequestHeader "SOAPAction",soapAction

Dim resp As Chilkat.HttpResponse
resp = http.PostXml(endpoint,soapRequestBody,"utf-8")
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    System.DebugLog("Failed to send SOAP request.")
    Return
End If

// Get the XML response body.
Dim responseXml As New Chilkat.Xml
success = resp.GetBodyXml(responseXml)

Dim statusCode As Int32
statusCode = resp.StatusCode
System.DebugLog("response status code: " + Str(statusCode))

// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.
If (statusCode <> 200) Then
    System.DebugLog(responseXml.GetXml())
    Return
End If

System.DebugLog(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
validateResponseOutput_success = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(success)")
Dim validateResponseOutput_interrupted As String
validateResponseOutput_interrupted = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(interrupted)")
Dim validateResponseOutput_mostSevereErrorLevel As String
validateResponseOutput_mostSevereErrorLevel = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|(mostSevereErrorLevel)")
Dim Result_success As String
Result_success = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(success)")
Dim Result_artifactType As String
Result_artifactType = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(artifactType)")
Dim Result_artifactPath As String
Result_artifactPath = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|(artifactPath)")
Dim Item_errorLevel As String
Item_errorLevel = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLevel)")
Dim Item_errorID As String
Item_errorID = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorID)")
Dim Item_errorFieldName As String
Item_errorFieldName = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorFieldName)")
Dim Item_errorLocation As String
Item_errorLocation = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLocation)")
Dim Item_errorText As String
Item_errorText = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(errorText)")
Dim Item_test As String
Item_test = responseXml.ChilkatPath("*:Body|*:validateResponseOutput|*:Result|*:Item|(test)")
Dim Exception As String
Exception = responseXml.GetChildContent("*:Body|*:validateResponseOutput|*:Result|*:Item|*:Exception")
Request XML
<soapenv:Envelope xmlns:pep="http://peppol.helger.com/ws/documentvalidationservice/201701/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <pep:validateRequestInput VESID="?" displayLocale="?">
            <pep:XML>string</pep:XML>
        </pep:validateRequestInput>
    </soapenv:Body>
</soapenv:Envelope>
Response XML
<soapenv:Envelope xmlns:pep="http://peppol.helger.com/ws/documentvalidationservice/201701/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Header/>
    <soapenv:Body>
        <pep:validateResponseOutput success="?" interrupted="?" mostSevereErrorLevel="?">
            <pep:Result success="?" artifactType="?" artifactPath="?">
                <pep:Item errorLevel="?" errorID="?" errorFieldName="?" errorLocation="?" errorText="?" test="?">
                    <pep:Exception>string</pep:Exception>
                </pep:Item>
            </pep:Result>
        </pep:validateResponseOutput>
    </soapenv:Body>
</soapenv:Envelope>