curl --location '/RCWS001.asmx' \
--header 'SOAPAction: http://tempuri.org/ValidarToken' \
--header 'Content-Type: text/xml; charset=utf-8' \
--data '<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<tns:ValidarToken xmlns:tns="http://tempuri.org/">
<tns:token>string</tns:token>
</tns:ValidarToken>
</soap12:Body>
</soap12:Envelope>'<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<tns:ValidarTokenResponse xmlns:tns="http://tempuri.org/">
<tns:ValidarTokenResult>
<tns:Situacao>Sucesso</tns:Situacao>
<tns:Mensagem>string</tns:Mensagem>
</tns:ValidarTokenResult>
</tns:ValidarTokenResponse>
</soap12:Body>
</soap12:Envelope>