Skip to content

Instantly share code, notes, and snippets.

@mcantrell
Created April 22, 2013 18:39
Show Gist options
  • Save mcantrell/5437410 to your computer and use it in GitHub Desktop.
Save mcantrell/5437410 to your computer and use it in GitHub Desktop.
JMX Manager for Mule
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:management="http://www.mulesoft.org/schema/mule/management"
xmlns:spring="http://www.springframework.org/schema/beans"
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/management http://www.mulesoft.org/schema/mule/management/current/mule-management.xsd
">
<management:jmx-default-config port="1098" registerMx4jAdapter="true">
<management:credentials>
<spring:entry key="admin" value="bacon"/>
</management:credentials>
</management:jmx-default-config>
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment