diff --git a/index.html b/index.html
index e60ea9a1e9..61f9f59e50 100644
--- a/index.html
+++ b/index.html
@@ -133,12 +133,12 @@ public interface TempConverter {
+ expression="'<FahrenheitToCelsius xmlns=''https://www.w3schools.com/xml/''><Fahrenheit>XXX</Fahrenheit></FahrenheitToCelsius>'.replace('XXX', payload.toString())" />
-
+
+ uri="https://www.w3schools.com/xml/tempconvert.asmx"/>
@@ -171,14 +171,14 @@ public class Application {
public IntegrationFlow convert() {
return f -> f
.transform(payload ->
- ""
+ ""
+ "" + payload + ""
+ "")
.enrichHeaders(h -> h
.header(WebServiceHeaders.SOAP_ACTION,
- "http://www.w3schools.com/xml/FahrenheitToCelsius"))
+ "https://www.w3schools.com/xml/FahrenheitToCelsius"))
.handle(new SimpleWebServiceOutboundGateway(
- "http://www.w3schools.com/xml/tempconvert.asmx"))
+ "https://www.w3schools.com/xml/tempconvert.asmx"))
.transform(Transformers.xpath("/*[local-name()=\"FahrenheitToCelsiusResponse\"]"
+ "/*[local-name()=\"FahrenheitToCelsiusResult\"]"));
}