Skip to content

Instantly share code, notes, and snippets.

@menski
Created July 22, 2014 02:44
Show Gist options
  • Save menski/2fd9e14f175d5755def4 to your computer and use it in GitHub Desktop.
Save menski/2fd9e14f175d5755def4 to your computer and use it in GitHub Desktop.
SOAP Envelope FreeMarker template
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:web="http://www.webserviceX.NET">
<soap:Header/>
<soap:Body>
<web:GetWeather>
<!--Optional:-->
<web:CityName>${city}</web:CityName>
<!--Optional:-->
<web:CountryName>${country}</web:CountryName>
</web:GetWeather>
</soap:Body>
</soap:Envelope>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment