From 6189ea2c97190f39913fddb97374ce6f81f73027 Mon Sep 17 00:00:00 2001 From: Kazuki Shimizu Date: Tue, 11 Jul 2017 02:54:52 +0900 Subject: [PATCH] Change https schema --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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\"]")); }