This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl http://localhost:8080/roadworks | |
| 104 geo paths for a total length of: 32392 meters. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <erlang:connector name="ErlangRabbitMqConnector" | |
| nodeName="MuleRabbitMqController" | |
| cookie="${rabbitmq.cookie}" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <service name="UserProvisioningService"> | |
| <inbound> | |
| <http:inbound-endpoint address="http://localhost:8080/rmq/users" synchronous="true"> | |
| <transformers> | |
| <object-to-string-transformer /> | |
| <message-properties-transformer scope="session"> | |
| <add-message-property key="userDetails" | |
| value="#[groovy:org.json.simple.JSONValue.parse(payload)]" /> | |
| </message-properties-transformer> | |
| </transformers> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <service name="PermissionsSetterService"> | |
| <inbound> | |
| <vm:inbound-endpoint path="rabbitmq.permissions.set" | |
| synchronous="true" /> | |
| <selective-consumer-router> | |
| <regex-filter pattern="ok" /> | |
| </selective-consumer-router> | |
| <forwarding-catch-all-strategy> | |
| <vm:outbound-endpoint path="rabbitmq.user.creation.failures" | |
| synchronous="true" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <service name="UserCreationErrorHandler"> | |
| <inbound> | |
| <vm:inbound-endpoint path="rabbitmq.user.creation.failures" | |
| synchronous="true"> | |
| <object-to-string-transformer /> | |
| </vm:inbound-endpoint> | |
| </inbound> | |
| <log-component /> | |
| </service> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"username":"mule", | |
| "password":"elum", | |
| "vhost":"/", | |
| "configure":".*", | |
| "write":".*", | |
| "read":".*"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl -d "{\"username\":\"mule\",\"password\":\"elum\",\"vhost\":\"/\",\"configure\":\".*\",\"write\":\".*\",\"read\":\".*\"}" http://localhost:8080/rmq/users | |
| "ok" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl -d "{\"username\":\"mule\",\"password\":\"elum\",\"vhost\":\"/\",\"configure\":\".*\",\"write\":\".*\",\"read\":\".*\"}" http://localhost:8080/rmq/users | |
| "{error,{user_already_exists,{109,117,108,101}}}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <profile> | |
| <id>buildnumber-plugin</id> | |
| <activation> | |
| <property> | |
| <!-- | |
| This profile is activated if NO system property | |
| 'skipBuildnumber' is found. Disable this profile | |
| by specifying -DskipBuildnumber=true on the commandline | |
| --> | |
| <name>!skipBuildnumber</name> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <vm:inbound-endpoint path="echo" exchange-pattern="one-way"/> |