February 1st, 2012 |
by akoelewijn |
published in
java, soa, software development
My mule configurations files often contain proxy settings for connectors that are used to communicate to the outside world. However during development and testing I can’t use the normal proxy, since i’m mocking the outside world. Littleproxy is a java proxy that you can use to replace the real proxy with a testing proxy. This [...]
December 20th, 2011 |
by akoelewijn |
published in
java, oss, soa
When I tried to use the following example by David Dossot mule-agent-based-sync-http-request-handling my jms endpoint times out. In the log i can see that the response message is created, but the outbound endpoint never receives it. After some googling i found the following blog post by Claude Mamo: ReplyTo in a Mule flow. Adding the [...]
December 14th, 2011 |
by akoelewijn |
published in
java, oss, soa
Here is a quick example how you can access you can access properties loaded using spring using the Mule expression language.
November 4th, 2009 |
by akoelewijn |
published in
java, oracle, oss, soa
I did a small proof of concept yesterday: a wicket web application using embedded Mule to connect to some services. Problem is that it had to run on OC4J 10.1.3.4.0 with Java 5. Got it running pretty fast, some tips: Oracle’s xml parser didn’t like some of Mule’s xsd files. You can solve this by [...]
October 21st, 2009 |
by akoelewijn |
published in
oss, soa
Here’s a quick example (thx enno) how you can unit test an smtp endpoint in Mule using subethasmtp Wiser. We’ll start by creating a new mule project using maven: If you have problems with dependencies when you run mvn compile, here’s a blog post that will explain how to fix the osgi dependency problems. Next [...]
October 18th, 2009 |
by akoelewijn |
published in
oss, soa
A coworker found a message on the mule-user mailing list that said that you have to apply response transformers on inbound endpoints, not on outbound endpoints. Sounds a bit weird to me, at least not very intuitive. Time for a test. Response transformer in a pass-through-router Here’s the mule config: Here’s how i start Mule: [...]
March 30th, 2009 |
by akoelewijn |
published in
soa
Small tip if you are using synchronous endpoints in MULE: last week I was trying to create a webservice proxy in MULE, but couldn’t get it to work. When calling the webservice endpoint as provided by MULE, no result would be displayed. Turns out, unlike specified on the Mule Messaging Style page, even for the [...]