Anyone who has designed RESTfull API appreciate API Kit Router available in Mule. It not only generates flows based on API definition but also route and validate messages. Our flows looks more concise and easy to read. This feature is available for both Community and Enterprise editions. For SOAP Web Services SOAP Router is available. However this time this utility works only for Enterprise Edition. Some time ago I developed a couple of services on Mule Community Edition. All services have WSDL contracts and I must say that when I now think about the implementation I would appreciate such router. So I have decided to write something similar that would work for Mule CE.
Web Service Consumer – a simple way to handle SOAP service
In my previous post, I have described the usage of the CXF proxy client to consume soap web service. We will create a similar service but this time we will use Web Service Consumer. Background We are going to create in mule simple service which consumes SOAP Web Service. The client can call our flow…
CXF proxy client – consume SOAP web service
When it is time to consume the SOAP Web Service mule has a couple of ways to handle this task. There was a time when I would generate stub classes based on the WSDL file, but I wanted to create flows without generating a single line of code. So I found out that we could use a…