Tag Cloud
- ActiveMQ
- Artifactory
- AWS
- AWS Beanstalk
- AWS DynamoDB
- AWS EMR
- AWS Glacier
- AWS IAM
- AWS RDS
- AWS Route 53
- AWS S3
- AWS SDK Java
- AWS SQS
- AWS VPC
- Axis2
- blockchain
- Boxfuse
- BPEL
- BPMN
- Citrus
- Cloud
- CloudCheckr
- Continuous Build
- Continuous Delivery
- CruiseControl
- CXF
- DataMining
- Docker
- EJB3
- ethereum
- Git
- GitLab
- GlassFish
- Hadoop
- Hibernate
- IntelliJ IDEA
- iOS
- Jasper Reports
- JAX-WS
- JAXB
- JBoss AS
- Jenkins
- JMS
- Linux
- MapForce
- MapReduce
- maven
- MongoDB
- Mule
- Mule ESB
- Mule iON
- Netbeans
- Nexus
- OpenEJB
- Oracle BPEL
- Oracle iAS
- Oracle WSM
- Oracle XE
- Quartz
- Red Hat
- REST
- Security
- Smooks
- SOA/Web Services
- SoapUI
- Spring Boot
- Spring Framework
- Spring Integration
- Spring WS
- Swift
- TOGAF9
- Tomcat
- WSO2 ESB
- XCode
- XML/XSD/XSLT
Archives
Categories
Top Posts & Pages
- Using a WAR module as dependency in Maven
- Transforming XML to CSV via XSLT
- Running the Maven Release Plugin with Jenkins
- Compiling Jasper Reports with Maven2
- Run your Spring Boot application on AWS using Elastic Beanstalk
- Cloning a JAXB object
- Using AWS Java SDK with AWS DynamoDB
- 'Error import WSDL' in SoapUI
- Use Spring and Hibernate with MongoDB
- Get a Certificate from AWS Certificate Manager
About me
Pascal Alma
Pascal is a senior IT consultant and has been working in IT since 1997. He is monitoring the latest development in new technologies (Mobile, Cloud, Big Data) closely and particularly interested in Java open source tool stacks, cloud related technologies like AWS and mobile development like building iOS apps with Swift. Specialties: Java/JEE/Spring Amazon AWS API/REST Big Data Continuous Delivery Swift/iOS
Personal Links
Category Archives: Mule3
Mule ESB, ActiveMQ and the DLQ
In this post I show a simple Mule ESB flow to see the DLQ feature of Active MQ in action. I assume you have a running Apache ActiveMQ instance available (if not you can download a version here). In this … Continue reading
Enabling WSSE Basic Authentication for a Web Service client in Mule
In a previous post I described how to enable WSSE security options in your web services proxied by Mule ESB. In this post I show you how to enable WSSE basic authentication on a ‘client’ side. I used this set … Continue reading
Posted in Mule3, Web Service
Tagged CXF, Mule ESB, Security, SOA/Web Services
Comments Off on Enabling WSSE Basic Authentication for a Web Service client in Mule
Unexpected behavior using Mule Expression Language
While developing flows with a recent Mule ESB there is a big chance you will make use of MEL in your configuration. Although this feature has added great benefits while developing Mule flows it sometimes drives me crazy. In this … Continue reading
Using encrypted passwords with Mule ESB
A good practice in the Mule ESB is to supply properties by using a property file. Most of the time you will end up adding passwords to the properties file. In that case you might want to encrypt the passwords … Continue reading
Posted in Mule3, Spring Framework
Tagged Jasypt, Mule ESB, Security, Spring Framework
Comments Off on Using encrypted passwords with Mule ESB
Unit testing with Mule ESB 3.4 Enterprise Edition
There is a big chance that when you are using the Mule ESB EE as your ESB implementation and you are creating functional/unit tests you sooner or later will need a license on your test classpath to be able to … Continue reading
Message Throttling with Mule ESB
While implementing the Mule ESB I ran into the following scenario: Messages were picked up from a queue, the message was transformed, offered to a web service, the response was transformed and put on a response queue. Not an unusual … Continue reading
Populate your Maven repo with Mule ESB libraries
Update: I recently discovered that the Mule EE libraries are available in a Maven repository. You have to have a Mule EE license to obtain the credentials. More info about it here. This option would make the remainder of the … Continue reading
Validating XML message in Mule 3
A quite common use case in a flow in the Mule ESB is validating if an XML document is valid against a corresponding XSD. Especially if a project is in the development/test stage it can be quite annoying to find … Continue reading
Reviewing the Mule Cookbook from PacktPublisher
Since a few months I am involved in a few Mule ESB projects again. Although it had been a while working with Mule they still know where to find me for some project work with the Mule ESB 🙂 At … Continue reading
Replacing standard Mule Transformer with a custom implementation
Although there is a lot of documentation about Mule ESB the issue in this post still took me some time to get it right. In this post I give a complete example of how I replaced standard Mule functionality (a … Continue reading