Tag Archives: mule

Using Message Cowboy

By | August 4, 2014

In this second article about Message Cowboy, the tool to perform scheduled file moves and message transfers, I will talk a bit about how to use the program. Configuration Properties Using the configuration properties, we can configure which database will be used, whether to start an embedded ActiveMQ broker and some additional aspects of database… Read More »

Message Cowboy – An Introduction

By | July 22, 2014

Round ’em messages up and bring them home! Message Cowboy is a standalone integration program that allows for scheduling of tasks that transfer files or messages from one directory, JMS queue etc to another directory, JMS queue etc. Messages may be transformed or processed in some other way before being delivered to the destination. Some… Read More »

Embedded ActiveMQ Broker with Mule

By | June 26, 2014

In this post I will show how an embedded ActiveMQ broker is automatically started when using the broker URL “vm://localhost” in a Mule JMS connector, without any additional configuration, and how to disable this behaviour. I will also look at how to explicitly configure an embedded ActiveMQ broker in a Mule configuration file. As documented… Read More »

Modifying Mule Component Properties Using the Spring PropertyOverrideConfigurer

By | June 3, 2014

For some while I have been thinking about how to be able to develop reusable Mule configuration files containing, for instance, entire flows. Of course I have seen the strategy that uses property files and the Spring PropertyPlaceholderConfigurer to inject different values into Mule components depending on the values from the property files. While providing… Read More »

Dynamic HTTP Proxy with Mule

By | March 9, 2014

In this post I will show a proof-of-concept for a dynamic HTTP proxy implemented using Mule. Principle The proxy forwards HTTP request using the context and relative path parts of the request URL to determine the server and port to which the request is to be forwarded. In the example in this article a SOAP… Read More »

Mule Unit Tests with Inbound Message Properties in Session or Invocation Scope

By | February 28, 2014

My very first blog post described how to unit test Mule transformers that access session and/or invocation scoped message properties. To accomplish that I developed a new, better, Mule message. In this post I will describe how this new Mule message class can be extended to allow for session and/or invocation scoped message properties to… Read More »