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
Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoXml
    Boolean iSuccess
    String sSoapRequestBody
    String sEndpoint
    String sSoapAction
    String sContentType
    Handle hoHttp
    Variant vResp
    Handle hoResp
    Variant vResponseXml
    Handle hoResponseXml
    Integer iStatusCode
    String sValidateResponseOutput_success
    String sValidateResponseOutput_interrupted
    String sValidateResponseOutput_mostSevereErrorLevel
    String sResult_success
    String sResult_artifactType
    String sResult_artifactPath
    String sItem_errorLevel
    String sItem_errorID
    String sItem_errorFieldName
    String sItem_errorLocation
    String sItem_errorText
    String sItem_test
    String sException
    String sTemp1
    Boolean bTemp1

    Get Create (RefClass(cComChilkatXml)) To hoXml
    If (Not(IsComObjectCreated(hoXml))) Begin
        Send CreateComObject of hoXml
    End
    Set ComTag Of hoXml To "soapenv:Envelope"
    Get ComAddAttribute Of hoXml "xmlns:pep" "http://peppol.helger.com/ws/documentvalidationservice/201701/" To iSuccess
    Get ComAddAttribute Of hoXml "xmlns:soapenv" "http://schemas.xmlsoap.org/soap/envelope/" To iSuccess
    Send ComUpdateChildContent To hoXml "soapenv:Header" ""
    Get ComUpdateAttrAt Of hoXml "soapenv:Body|pep:validateRequestInput" True "VESID" "?" To iSuccess
    Get ComUpdateAttrAt Of hoXml "soapenv:Body|pep:validateRequestInput" True "displayLocale" "?" To iSuccess
    Send ComUpdateChildContent To hoXml "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. 
    Set ComEmitXmlDecl Of hoXml To False
    Get ComGetXml Of hoXml To sSoapRequestBody

    Move "https://peppol.helger.com/wsdvs" To sEndpoint
    Move "validate" To sSoapAction
    //  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
    Move "text/xml" To sContentType

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    Send ComClearHeaders To hoHttp
    Send ComSetRequestHeader To hoHttp "Content-Type" sContentType
    Send ComSetRequestHeader To hoHttp "SOAPAction" sSoapAction

    Get ComPostXml Of hoHttp sEndpoint sSoapRequestBody "utf-8" To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Showln "Failed to send SOAP request."
        Procedure_Return
    End

    // Get the XML response body.
    Get Create (RefClass(cComChilkatXml)) To hoResponseXml
    If (Not(IsComObjectCreated(hoResponseXml))) Begin
        Send CreateComObject of hoResponseXml
    End
    Get pvComObject of hoResponseXml to vResponseXml
    Get ComGetBodyXml Of hoResp vResponseXml To iSuccess

    Get ComStatusCode Of hoResp To iStatusCode
    Showln "response status code: " iStatusCode

    Send Destroy of hoResp

    // If the status code does not indicate succcess, then show the response XML,
    // which probably contains error information.
    If (iStatusCode <> 200) Begin
        Get ComGetXml Of hoResponseXml To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComGetXml Of hoResponseXml To sTemp1
    Showln sTemp1

    // 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).

    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|(success)" To sValidateResponseOutput_success
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|(interrupted)" To sValidateResponseOutput_interrupted
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|(mostSevereErrorLevel)" To sValidateResponseOutput_mostSevereErrorLevel
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|(success)" To sResult_success
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|(artifactType)" To sResult_artifactType
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|(artifactPath)" To sResult_artifactPath
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLevel)" To sItem_errorLevel
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(errorID)" To sItem_errorID
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(errorFieldName)" To sItem_errorFieldName
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(errorLocation)" To sItem_errorLocation
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(errorText)" To sItem_errorText
    Get ComChilkatPath Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|(test)" To sItem_test
    Get ComGetChildContent Of hoResponseXml "*:Body|*:validateResponseOutput|*:Result|*:Item|*:Exception" To sException


End_Procedure
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>