Yearly Archives: 2014

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 »

Find Maven Information in JAR Files

By | May 19, 2014

In this post I will let the code do most of the talking and just tell you that I want to share a Groovy script for finding information from Maven pom.xml files embedded in JAR files. The reason for this is that I wanted to create a list of third-party libraries and their versions that… Read More »

Blog Migration

By | March 27, 2014

Update April 6th 2014: The migration of my blog and my books is now finished. It has been a very interesting experience, but I hope I will have more time for blogging from now on.

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 »