Questions tagged [mule]

Mule 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 enables easy integration of existing systems, regardless of the different technologies that the applications use, including JMS, Web Services, JDBC, HTTP, and more.

Mule 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 enables easy integration of existing systems, regardless of the different technologies that the applications use, including JMS, Web Services, JDBC, HTTP, and more.

The key advantage of an ESB is that it allows different applications to communicate with each other by acting as a transit system for carrying data between applications within your enterprise or across the Internet. In addition it supports API driven development by offering full support and integration of RAML modelling language.

Mule main capabilities includes:

  • Service creation and hosting — expose and host reusable services, using Mule as a lightweight service container
  • Service mediation — shield services from message formats and protocols, separate business logic from messaging, and enable location-independent service calls
  • Message routing — route, filter, aggregate, and re-sequence messages based on content and rules
  • Data transformation — exchange data across varying formats and transport protocols
7956 questions
6
votes
1 answer

Mule - How can I use set-session-variable in http:listener?

I have a composite-source consist of two http:listener in Mule; I want to set a variable based on each of the listeners after receive requests from these listeners ; but this error occurs while deploys in mule…
6
votes
1 answer

Not able to access Jira Payload in JAVA (java.util.Arrays$ArrayList)

Here is my Flow information. Trying to GET one issue from JIRA and want to setup that issueID to another project. Here i want to use Custom Transformer and setup all objects using JAVA coding.
dev
  • 97
  • 2
  • 8
6
votes
4 answers

how to find the root elements name using xpath

Hi am having an XML file I have to find the root element of it using xpath am using mule ESB so I need to set this root element as variable so anyone can provide me xpath for finding the name of the root element
Satheesh Kumar
  • 797
  • 7
  • 31
6
votes
4 answers

Why does Mule flow default-exception-strategy have no effect?

I'm using Mule standalone 3.1.0 and I have a flow with a default exception strategy. My fooImpl class throws an exception on purpose and its stacktrace gets vomited onto the mule stdout - ExceptionTransformer is not triggered and I get no email. If…
Joel Peltonen
  • 13,025
  • 6
  • 64
  • 100
6
votes
6 answers

Mule MEL check for NullPayload vs null

According to the following ticket: https://www.mulesoft.org/jira/browse/MULE-6427 For NullPayload I should be able to use : but that fails. So instead I have to use:
jon lee
  • 887
  • 1
  • 15
  • 32
6
votes
1 answer

Non-resolvable parent POM

I am trying to develop a custom connector for mule by following http://www.mulesoft.org/documentation/display/current/Creating+a+Connector+Project tutorial. As shown in the tutorial, I am creating the project through command line by executing mvn…
Sheikh Zubair
  • 104
  • 1
  • 2
  • 8
6
votes
5 answers

Mule: getting a hold of the exception message

I have a default catch exception in Mule, and I'm trying to get access to the exception message, using a Mule expression: #[exception] This doesn't seem to work, and I'm guessing that I'm trying to access the wrong variable? I'm trying to log it…
Loic Duros
  • 5,472
  • 10
  • 43
  • 56
6
votes
3 answers

Mule - how to get Mule to throw an exception if XML schema validation fails

I'm using a Mule schema validation filter to validate an incoming XML file against a given scheme. Below is my configuration for the schema component:
danw
  • 1,608
  • 4
  • 29
  • 48
6
votes
4 answers

How to print exception payload within mule message flow

I have a mule flow within which I am logging the entire payload in String format by following code snippet Now if the error occurs there really is no need to print the entire payload.…
An And
  • 155
  • 1
  • 3
  • 14
6
votes
1 answer

Default Thread Pool Size in MULE

What are default number of threads in mule thread . For example , if i create a http connector in mule and do not specify receiver thread size , then what it maximum number of concurrent request it can handle ?
somaniA
  • 614
  • 2
  • 7
  • 30
6
votes
2 answers

Timeout error in Until Successful

We have a flow where we have implemented a soap client to send soap messages to Service provider. We need to retry the service call for 3 times if it fails. So we have used HTTP Outbound Endpoint inside until successful scope. It is doing retry as…
Kaaviraaj
  • 175
  • 2
  • 11
6
votes
3 answers

Implementing REST API calls in mule - Jersey versus Plain-Old-Mule-HTTP

I am trying to determine whether to use -- Jersey (JAX-RS) with HTTP based inbound endpoint. Use HTTP based inbound end-point, and then examine HTTP header data ( like http.method, http.query.params, http.query.string, etc.) to determine the…
user1493140
  • 5,976
  • 4
  • 29
  • 49
6
votes
3 answers

Mule ESB - two files as input (wait for both)

I want to make a flow where: waiting for two files: file_name.xdf and file_name.dff : if both files (I want to process two files in the same time (waiting for both), the file name of those files shoud be the same) process those files convert to…
lukisp
  • 1,031
  • 3
  • 14
  • 27
6
votes
4 answers

How to concatenate 2 values in mule?

Can someone please let me know how to concatenate multiple values in mule? Something like, #[payload.getPayload()].concat(#[getSubject()])
Learner
  • 2,303
  • 9
  • 46
  • 81
6
votes
2 answers

Mule Inter - App communication in same instance

I have explored the web on MULE and got to understand that for Apps to communicate among themselves - even if they are deployed in the same Mule instance - they will have to use either TCP, HTTP or JMS transports. VM isn't supported. However I…
Soumya
  • 1,054
  • 2
  • 16
  • 31