Skip to content

Instantly share code, notes, and snippets.

@marianogonzalez
Created June 8, 2015 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marianogonzalez/10dcaec34965468f8933 to your computer and use it in GitHub Desktop.
Save marianogonzalez/10dcaec34965468f8933 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<mule
xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:jetty="http://www.mulesoft.org/schema/mule/jetty"
xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/jetty http://www.mulesoft.org/schema/mule/jetty/current/mule-jetty.xsd
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd">
<configuration>
<default-threading-profile maxThreadsActive="400"/>
</configuration>
<http:connector name="Http" sendTcpNoDelay="true" keepAlive="true" doc:name="HTTP-HTTPS" >
<service-overrides sessionHandler="org.mule.session.NullSessionHandler"/>
</http:connector>
<flow name="generation">
<http:inbound-endpoint address="http://0.0.0.0:8080" exchange-pattern="request-response"/>
<mulexml:xslt-transformer xsl-file="transform_env_reverse.xslt"
maxIdleTransformers="48"
maxActiveTransformers="48" />
<mulexml:xslt-transformer xsl-file="transform_env.xslt"
maxIdleTransformers="48"
maxActiveTransformers="48" />
</flow>
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment