SOAP WSDL Generate Code

WageFileServicesSOAP12Binding / getWageFileStatus

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
$oXml = ObjCreate("Chilkat_9_5_0.Xml")
$oXml.Tag = "soap:Envelope"
$oXml.AddAttribute("xmlns:soap","http://www.w3.org/2003/05/soap-envelope")
$oXml.AddAttribute("xmlns:impl","urn:parameters.v3.ewr.ws.ssa.gov")
$oXml.AddAttribute("xmlns:ns0","urn:skeleton.v3.ewr.ws.ssa.gov")
$oXml.UpdateChildContent "soap:Header",""
$oXml.UpdateChildContent "soap:Body|ns0:GetWageFileStatusRequest|impl:confirmationNumber","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. 
$oXml.EmitXmlDecl = False
Local $soapRequestBody = $oXml.GetXml()

Local $sEndpoint = "https://ws.ssa.gov/ewrwsv3/services/WageFileServices"
Local $soapAction = "getWageFileStatus"
;  For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
Local $sContentType = "text/xml"

$oHttp = ObjCreate("Chilkat_9_5_0.Http")

$oHttp.ClearHeaders 
$oHttp.SetRequestHeader "Content-Type",$sContentType
$oHttp.SetRequestHeader "SOAPAction",$soapAction

Local $oResp = $oHttp.PostXml($sEndpoint,$soapRequestBody,"utf-8")
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    ConsoleWrite("Failed to send SOAP request." & @CRLF)
    Exit
EndIf

; Get the XML response body.
$oResponseXml = ObjCreate("Chilkat_9_5_0.Xml")
$oResp.GetBodyXml($oResponseXml)

Local $iStatusCode = $oResp.StatusCode
ConsoleWrite("response status code: " & $iStatusCode & @CRLF)

; If the status code does not indicate succcess, then show the response XML,
; which probably contains error information.
If ($iStatusCode <> 200) Then
    ConsoleWrite($oResponseXml.GetXml() & @CRLF)
    Exit
EndIf

ConsoleWrite($oResponseXml.GetXml() & @CRLF)

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

Local $sWfid = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:wfid")
Local $iReceiptYear = $oResponseXml.GetChildIntValue("*:Body|*:GetWageFileStatusResponse|*:receiptYear")
Local $sVersion = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:version")
Local $sReceiptDate = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:receiptDate")
Local $statusCode = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:statusCode")
Local $statusDescription = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:statusDescription")
Local $statusDate = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:statusDate")
Local $sFilingMethod = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:filingMethod")
Local $iW3Count = $oResponseXml.GetChildIntValue("*:Body|*:GetWageFileStatusResponse|*:w3Count")
Local $sOriginalFilename = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:originalFilename")
Local $sReturnCode = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:returnCode")
Local $sTransactionTimestamp = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:transactionTimestamp")
Local $sErrorInfo = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:errorInfo")
Local $sErrorDateInfo = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:errorDateInfo")
Local $sDeprecationDate = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:deprecationDate")
Local $sunsetDate = $oResponseXml.GetChildContent("*:Body|*:GetWageFileStatusResponse|*:response|*:sunsetDate")
Request XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:impl="urn:parameters.v3.ewr.ws.ssa.gov" xmlns:ns0="urn:skeleton.v3.ewr.ws.ssa.gov">
    <soap:Header/>
    <soap:Body>
        <ns0:GetWageFileStatusRequest>
            <impl:confirmationNumber>string</impl:confirmationNumber>
        </ns0:GetWageFileStatusRequest>
    </soap:Body>
</soap:Envelope>
Response XML
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ns0="urn:skeleton.v3.ewr.ws.ssa.gov" xmlns:impl="urn:parameters.v3.ewr.ws.ssa.gov">
    <soap:Header/>
    <soap:Body>
        <ns0:GetWageFileStatusResponse>
            <impl:wfid>string</impl:wfid>
            <impl:receiptYear>1042</impl:receiptYear>
            <impl:version>string</impl:version>
            <impl:receiptDate>dateTime</impl:receiptDate>
            <impl:statusCode>string</impl:statusCode>
            <impl:statusDescription>string</impl:statusDescription>
            <impl:statusDate>dateTime</impl:statusDate>
            <impl:filingMethod>string</impl:filingMethod>
            <impl:w3Count>1042</impl:w3Count>
            <impl:originalFilename>string</impl:originalFilename>
            <impl:response>
                <impl:returnCode>string</impl:returnCode>
                <impl:transactionTimestamp>dateTime</impl:transactionTimestamp>
                <impl:errorInfo>string</impl:errorInfo>
                <impl:errorDateInfo>dateTime</impl:errorDateInfo>
                <impl:deprecationDate>dateTime</impl:deprecationDate>
                <impl:sunsetDate>dateTime</impl:sunsetDate>
            </impl:response>
        </ns0:GetWageFileStatusResponse>
    </soap:Body>
</soap:Envelope>