xml := chilkat.NewXml()
xml.SetTag("soapenv:Envelope")
xml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
xml.AddAttribute("xmlns:v3","http://oneclickforapp.dpag.de/V3")
xml.UpdateChildContent("soapenv:Header","")
xml.UpdateChildContent("soapenv:Body|v3:RetrievePageFormatsRequest","")
// 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.SetEmitXmlDecl(false)
soapRequestBody := xml.GetXml()
endpoint := "https://internetmarke.deutschepost.de/OneClickForApp/OneClickForAppServiceV3/OneClickForAppV3EJB"
soapAction := " "// For SOAP requests, the standard Content-Type is usually set to "text/xml" or "application/soap+xml"
contentType := "text/xml"
http := chilkat.NewHttp()
http.ClearHeaders()
http.SetRequestHeader("Content-Type",contentType)
http.SetRequestHeader("SOAPAction",soapAction)
resp := http.PostXml(endpoint,soapRequestBod*soapRequestBody,"utf-8")
if http.LastMethodSuccess() == false {
fmt.Println(http.LastErrorText())
fmt.Println("Failed to send SOAP request.")
xml.DisposeXml()
http.DisposeHttp()
return
}
// Get the XML response body.
responseXml := chilkat.NewXml()
resp.GetBodyXml(responseXml)
statusCode := resp.StatusCode()
fmt.Println("response status code: ", statusCode)
resp.DisposeHttpResponse()
// If the status code does not indicate succcess, then show the response XML,
// which probably contains error information.if statusCode != 200 {
fmt.Println(*responseXml.GetXml())
xml.DisposeXml()
http.DisposeHttp()
responseXml.DisposeXml()
return
}
fmt.Println(*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).
id := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:id")
isAddressPossible := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:isAddressPossible")
isImagePossible := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:isImagePossible")
name := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:name")
description := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:description")
pageType := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageType")
x := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:size|*:x")
y := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:size|*:y")
orientation := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:orientation")
x = responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:labelSpacing|*:x")
y = responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:labelSpacing|*:y")
labelX := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:labelCount|*:labelX")
labelY := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:labelCount|*:labelY")
top := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:margin|*:top")
bottom := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:margin|*:bottom")
left := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:margin|*:left")
right := responseXml.GetChildContent("*:Body|*:RetrievePageFormatsResponse|*:pageFormat|*:pageLayout|*:margin|*:right")
xml.DisposeXml()
http.DisposeHttp()
responseXml.DisposeXml()