Tag Archives: Mule
Combining Smooks with Mule
For a new interface that we have to implement we have to transfrom a file with ‘character separated values’ to a XML message. One way to obtain this transformation is by using Smooks. Smooks is an extensible framework for building … Continue reading
First results evaluating Mule's Management Console
As I said before we were asked to check out the new Management Console of Mule. In this post I will show the steps I took to get the console up and running and the first results of the evaluation. … Continue reading
Evaluating Mule Management Console
Currently we’re evaluating the Mule Management Console: a new product from MuleSoft that replaces Mule HQ. We have had a look at Mule HQ before and decided that it was not offering the functionality we were looking for. Apparently we … Continue reading
Dynamic Routing in Mule
I needed Mule to determine the outbound endpoint based on the content of properties in my custom XML message. Although this might look as common functionality I couldn’t find a complete example for this on the net. This one was … Continue reading
Create your own Expression Evaluator in Mule
Although there are a lot of evaluators available in Mule CE it is very easy to add your own evaluator. In my case we have a self defined message format that holds some properties in the header of a message … Continue reading
Combining Mule with a BPEL Engine
In my current project we are going to need a BPEL engine besides our Mule CE implementation. Actually, we will use Mule for our stateless communication between systems and use BPEL for the stateful processes. One of the possible frameworks … Continue reading
Example of using Component Binding in Mule2 (part 3)
This is the last post in the series about using the Component Binding example in Mule2. In the previous two posts I explained the situation for which I use the component binding and how I configured this binding. In this … Continue reading
Example of using Component Binding in Mule2 (part 2)
In this post I dive into the use of a Component Binding in Mule. The context is given here. I will show how I use a component binding to combine the original message and the response message in one message. … Continue reading
Example of using Component Binding in Mule2
In my last Mule project we had to implement a situation that I would call a conversational pattern. Now one could consider almost all communication by messages between systems part of a conversation, but in this case I had the … Continue reading
Using SFTP Transport in Mule2
The SFTP Transport allows files to be read and written to and from directories over SFTP. It is not a standard transport that is distributed with Mule itself but can be added as an extra project. The project can be … Continue reading