Tag Archives: Mule
New products from Mulesoft
Mulesoft recently released some new products, totally different from each other but both very welcome. The first one is MuleStudio. Mule Studio is an Eclipse-based developer tool, that allows to graphically create and test Mule ESB Flows. It is currently … Continue reading
Citrus testcase example: CSV File Inbound -> Xml Http Outbound
As promised I’m going to show a test case for which I have used Citrus to implement it. The case is like this: In a predefined folder on a machine a character-separated file is placed. This file is picked up … Continue reading
Using parameters with XSLT in Mule
Recently I got into a situation where I had to put ‘metadata’ values (which were part of the Mule Message) into the XML result of an XSLT transformer. Let me explain the situation with an example. Imagine you have an … Continue reading
Using Mule EE Retry Policies
At a project for one of our customers we migrated from Mule CE to Mule EE edition (version 2.2.7). The customer had various good reasons to do this and it offered us new functionalities in Mule ESB to use. One … Continue reading
About Mule, content-based routing and namespaces
Some of our Mule ESB applications make use of content-based routing when processing a message. To implement this in Mule we use a filtering-router with a jaxen-filter. The most simple example looks like this: 1 2 3 4 5 6 … Continue reading
On multicasting, chaining routers and the matchAll attribute
Last week I had to implement an interface for a customer in which an XML file had to be loaded into the database. But … the database table needed to be truncated first. At first, I thought that a chaining … Continue reading
Mule and the "Attempted read from closed stream"-exception
When you are using a certain version of Mule ESB you are going to run into an existing bug sooner or later. That isn’t really a problem, I would call it inevitable (at least based on my own experience). The … Continue reading
Howto Quickly Insert XML into a Database using Mule ESB
Mule ESB is a versatile service bus that contains numerous usable components out-of-the-box. In this blog I’ll show you how to process an incoming XML document, break it up into multiple parts and insert them into the database without using … Continue reading
Combining Mule with Altova MapForce
As promised in our previous blog about Altova Mapforce we will show in this post how to combine the result of the generated code of Altova Mapforce with a Mule application. As we have shown before, the Java code that … Continue reading
Using Smooks+Mule to transform CSV file to XML one
As I promised before here is an example of how to use Smooks in combination with Mule. In this example I transform a CSV file to a plain XML file. This XML file can then be transformed with an XSLT … Continue reading