curl --location '/RCWS001.asmx' \
--header 'SOAPAction: http://tempuri.org/ObtemVersaoArquivos' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data '<?xml version="1.0" encoding="UTF-8"?>
<root>
<soap12:Envelope>
<soap12:Body>
<tns:ObtemVersaoArquivos>esse veniam</tns:ObtemVersaoArquivos>
</soap12:Body>
</soap12:Envelope>
</root>'<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<tns:ObtemVersaoArquivosResponse xmlns:tns="http://tempuri.org/">
<tns:ObtemVersaoArquivosResult>
<tns:Arquivos>
<tns:VersaoArquivo>
<tns:Nome>string</tns:Nome>
<tns:Versao>string</tns:Versao>
<tns:Tamanho>100</tns:Tamanho>
</tns:VersaoArquivo>
</tns:Arquivos>
</tns:ObtemVersaoArquivosResult>
</tns:ObtemVersaoArquivosResponse>
</soap12:Body>
</soap12:Envelope>