Convert XML to JAXB Object in Mule ESB

In this tutorial I am going to show you how we can convert XML data into JAXB object in Mule ESB. We will use File Connector to take an XML file as input then we will map it to an appropriate JAXB object. You can see also Convert JAXB Object to XML in Mule ESB The JAXB transformers allow objects…

Convert file data to map-payload and insert into MySQL using Mule ESB

This tutorial will show you how to use Mule JDBC Transport to convert text file data to Map and insert into MySQL database in Mule based application. You may also review Mule JDBC Insert Example and Dump CSV data into MySQL Database using Mule ESB Connectors provide an abstraction layer over data transport mechanisms. Connectors exist for things such as…

Dump CSV data into MySQL Database using Mule ESB

This tutorial will show you how to use Mule JDBC Transport to dump CSV data into MySQL database in Mule based application. You may also review Mule JDBC Insert Example Connectors provide an abstraction layer over data transport mechanisms. Connectors exist for things such as files, email messages, databases, JMS, and even Jabber messages. A connector saves you the tedium…

Mule JDBC Insert Example

This tutorial will show you how to use Mule JDBC Transport to insert data into MySQL database in Mule based application. Connectors provide an abstraction layer over data transport mechanisms. Connectors exist for things such as files, email messages, databases, JMS, and even Jabber messages. A connector saves you the tedium of having to implement the details of a particular…

Mule JMS Transport with Active MQ

This tutorial will show you how to use Mule JMS Transport in Mule based application. You can watch video version of the tutorial https://www.youtube.com/watch?v=bU0Rnds3L0A You can be interested in Sending JMS messages with the JMS outbound endpoint in Mule Connectors provide an abstraction layer over data transport mechanisms. Connectors exist for things such as files, email messages, databases, JMS, and even…

Mule VM Transport with File Connector Example

This tutorial will show you how to use VM Transport with File Connector in Mule based application. You can see the same tutorial in youtube video https://youtu.be/OQUqruRJbrU You may like the other tutorial Mule VM Transport with HTTP Example What is VM Transport The VM transport is nothing but an in-memory transport. Therefore when a message has to be passed through a VM endpoint, i.e.,…

Mule VM Transport with HTTP Example

This tutorial will show you how to use VM Transport with HTTP Connector in Mule based application. What is VM Transport The VM transport is nothing but an in-memory transport. Therefore when a message has to be passed through a VM endpoint, i.e., the message is being transferred from one endpoint to another endpoint in memory. So the VM transport can be used…

Mule STDIO Connector Example

This tutorial will show you how to use Mule Connector stdio in Mule based application. What is Mule Connector (taken from Mule in Action) A connector is in charge of controlling the usage of a particular protocol. It’s configured with parameters that are specific to this protocol and holds any state that can be shared with the underlying entities in…

Mule on Tomcat

In this post I will show you how it is possible to deploy Mule on a web container such as Tomcat because running Mule as a standalone service is often the more popular and recommended approach. Both standalone and web based mule applications have their benefits and drawbacks but which one to use is mainly dependent on the project requirements…

Cucumber framework with Mule ESB

What is Mule ESB ? Mule ESB is a lightweight Java-based enterprise service bus (ESB) and integration platform that allows developers to connect applications together quickly and easily, enabling them to exchange data. Mule ESB enables easy integration of existing systems, regardless of the different technologies that the applications use, including JMS, Web Services, JDBC, HTTP, and more. This example…