Para gerar esse nosso log,  preciso ir em Servios > Configurao, aba monitoramento e habilitar a opo Gerar log de execuo de servios informando algum caminho para salvar o arquivo txt.

---No Log da nossa aplicao---
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"	xmlns:a="http://tempuri.org/" xmlns:XS="http://www.w3.org/2001/XMLSchema" xmlns:XI="http://www.w3.org/2001/XMLSchema-instance">
  <S:Body>
    <a:CelsiusToFahrenheit>
	  <a:Celsius XI:type="XS:string">20</a:Celsius>
	</a:CelsiusToFahrenheit>
  </S:Body>
</S:Envelope>

---No SOAPUI---
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/">
   <soap:Header/>
   <soap:Body>
      <tem:CelsiusToFahrenheit>
         <tem:Celsius>20</tem:Celsius>
      </tem:CelsiusToFahrenheit>
   </soap:Body>
</soap:Envelope>