Tagged Questions
3
votes
0answers
366 views
how to invoke multiple http webservice in mule flow in transaction?
I am new to mule.
I have a spring-hibernate mule setup. Suppose there are 3 webservice.Aim is to invoke all those webservice in a mule flow so that all 3 will be in a transaction. so that suppose if ...
2
votes
2answers
187 views
How does Mule handle XML configuration that doesn't comply with its XML schema?
I've been assigned to work on a legacy system using Mule 2 and I've found some quirks in some of the old configuration. The developers who originally wrote the documentation has changed jobs so nobody ...
2
votes
3answers
1k views
How to register a custom exception mapper in Mule + Jersey + Spring?
I built a exception mapper using JAX-RS ExceptionMapper:
@Provider
public class MyCustomExceptionMapper implements ExceptionMapper<MyException>{...}
It is unclear to me is how to register it ...
2
votes
1answer
3k views
How to integrate Spring application with Mule ESB
I want to integrate my spring (3.0) application with Mule ESB (Mule3) and make available those service for different clients (.Net, GWT etc). For accomplish this, whether I should deploy my Spring ...
2
votes
1answer
436 views
Using Mule Expressions in a Spring Configuration
I'm setting up a Mule application and in it, I wanted to use Spring beans to wire up an EHCache and JDBC connection. Instead of putting the configuration information in each Mule application I create, ...
2
votes
1answer
167 views
Mule JMX agent - Need to update port value at runtime
I am using a spring property 'port', but the value of this port variable changes dynamically when the application is running and I want to access this new dynamic value everytime its value changes. ...
2
votes
1answer
356 views
Mule 3 webservice does not return stacktrace
I've recently switched from Mule 2.2.1 to Mule 3.x
The gist of this is Mule 3 does not return stacktrace but Mule 2 does, how do i replicate the Mule 2 behavior?
More details:
Some of the web ...
1
vote
3answers
1k views
Spring 3.1 Namespace error Component Scan
I am using Spring 3.1.1 with mule.
The versions of the jars used inside mule are 3.1.1 RELEASE.
Inside my configuration XML which is a mule flow,
I am getting following SAX parser exception.
...
1
vote
1answer
179 views
how to send same payload to multiple component in mule?
I have a problem where one mule component transform the payload object into some other value. Ex: Suppose my payload contain student object.
Initial value of Student name=a;
My first mule component ...
1
vote
1answer
535 views
Spring3 Dependency Injection not working with mule
I am unable to inject customerDao object in reference variable inside CustomerServiceImpl service class.
Here is my mule_flow.mflow file
<?xml version="1.0" encoding="UTF-8"?>
<mule ...
1
vote
2answers
896 views
How to mock REST Services?
I have a maven/mule/spring development environment that I build REST services within. I also have a series of TestNG tests to validate these services. I also want the ability to alter the responses ...
1
vote
2answers
440 views
how to define local spring beans in mule
I have several flows in my mule-config.xml but some beans only makes sense to say one flow. Is there a way to define a bean local to a flow. I understand that I can define an inline bean like below:
...
1
vote
1answer
531 views
Mule-embedded: use the container's own jndiInitialFactory
Consider the following mule configuration and having mule embedded in a Web (JEE) Application:
<jms:connector
name="jmsConnector"
connectionFactory-ref="jmsConnectionFactory"> ...
1
vote
1answer
435 views
How to re-use choice element across multiple flows?
I have a mule-config file where i have defined a "http inbound" to accept request on the corresponding URL.
Now what i have to to is to accept only a valid http inbound address and reject others.
...
1
vote
1answer
80 views
Application scope PropertyPlaceHolder Spring in Mule
I'am using Mule CE 3.3.0 and I have a problem with the PropertyPlaceHolder's scope. Let's suppose that I have two mule application (writeApp and readApp). In the writeApp application I set a ...