Updated by
Added
.gitignore- Ignore whitespace
Added
mule-project.xml- Ignore whitespace
Added
pom.xml- Ignore whitespace
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Added
src/main/app/backend.xml- Ignore whitespace
+ xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
+http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
+http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd
+http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
+http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd">
+ <http:listener config-ref="HTTP_Listener_Configuration" path="/EchoImpl" doc:name="HTTP" allowedMethods="POST"/>
+ <cxf:proxy-service namespace="http://echo.example.com/" service="EchoImplService" doc:name="CXF" enableMuleSoapHeaders="false" payload="body" wsdlLocation="echoservice.wsdl"/>
+ <set-payload value="<echo:echoResponse xmlns:echo='http://echo.example.com/'><echo:return>Hello #[xpath3('//echo:arg0')]</echo:return></echo:echoResponse>"/>
Added
src/main/app/mule-app.properties- Ignore whitespace
Empty file added.
Added
src/main/app/mule-esb-ce-wsc-demo.xml- Ignore whitespace
+ xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
+http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd
+http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
+http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd">
+ <http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
+ <ws:consumer-config name="Web_Service_Consumer" wsdlLocation="echoservice.wsdl" service="EchoImplService" port="EchoImplPort" serviceAddress="http://localhost:8081/EchoImpl" doc:name="Web Service Consumer"/>
+ <mulexml:context-property key="name" value="#[message.inboundProperties.'http.query.params'.name]"/>
Added
src/main/resources/echoservice.wsdl- Ignore whitespace
+ <xs:schema targetNamespace='http://echo.example.com/' version='1.0' xmlns:tns='http://echo.example.com/' xmlns:xs='http://www.w3.org/2001/XMLSchema'>
Added
src/main/resources/request.xslt- Ignore whitespace
+<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:echo="http://echo.example.com/">