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
1
vote
1 answer

Accessing Error Detail in Console

Using Mule 4.1 When an error is encountered in a flow something like the following is logged in the console. ******************************************************************************** Message : Cannot parse input XML because…
jradich1234
  • 1,410
  • 5
  • 24
  • 29
1
vote
1 answer

Best way to secure a mule 4 application

I am using Mule 4 and Anypoint 7. I am looking at how I can secure my mule application so it can only be access by teams within my company. The API would be sending customer groupings and stats and may start to include personal identifiable…
user3165854
  • 1,505
  • 8
  • 48
  • 100
1
vote
2 answers

How to get payload mime type in Mule 4

I am trying to find out what is the payload type by printing it out using logger. I am aware that in Mule 3 you could use this #[payload.getClass().getSimpleName()] or #[message.dataType.type]. How to achieve this in Mule 4? I did my google search…
Tomeister
  • 675
  • 2
  • 9
  • 26
1
vote
1 answer

Mule 4.1.2 custom connector error

I have created custom connector project using below command, "mvn org.mule.extensions:mule-extensions-archetype-maven-plugin:generate" in Mule 4. But when i open this project in anypoint studio 7.1.2 it gives below error ('The…
Videesh
  • 21
  • 5
1
vote
1 answer

MuleSoft: Can we customize API Toolkit RAML Schema Validation ?

I am new in mulesoft, I am trying to use RAML for schema validation, Problem is when we received bad request which is not as per schema, APIToolkit will throw exception one by one against the individual field. Is there any way, using which we can…
Viral
  • 189
  • 1
  • 14
1
vote
1 answer

Mule JSON Payload null check in Choice Filter

Am I doing anything wrong here? Even the json payload is [], it's going to the default instead of Error log.
ray
  • 4,210
  • 8
  • 35
  • 46
1
vote
1 answer

ERROR Appenders contains an invalid element or attribute "Http"

I am using Log4j Http appender to send data to Splunk using mule cloudhub. During the build it thorws the error: ERROR Appenders contains an invalid element or attribute Http and I am not seeing the data in Splunk. The error happens with Log4j…
Mukesh Kumar
  • 21
  • 1
  • 5
1
vote
1 answer

How to do RAML sync between Anypoint Studio and Design Center

I am using Mule 4 and Anypoint Studio 7 . I have imported code from design center and generated the flows. Now how to do a API (Raml) sync between Design Center and Anypoint Studio .If i add new resource/method pairing it is not reflected. Earlier…
amitm
  • 11
  • 3
1
vote
1 answer

What is the maximum size limit on payload in mule

I am trying to send a 2 GB file using binary option in postman to Mule application. Getting 413 Request entity too large error. There are no logs present in the Mule application so it seems its failing on APIKit router itself. Is there any limit on…
Sayali
  • 49
  • 4
1
vote
1 answer

Difference between MEL and Groovy?

Why are we using MEL when we have Groovy or why are we using groovy when we have MEL? Both are used for accessing and manipulating the message. Whats make them different
bhanu
  • 11
  • 2
1
vote
1 answer

handling repeating xml elements in mule

muleDev
  • 13
  • 5
1
vote
1 answer

How to transform comma separated string into csv in mule?

I have a requirement where I have dynamic comma separated string value in a flow variable, which I need to convert into a csv file values. for example, I can have following comma separated string values in variable: abc,efg,ijk or …
Sri Arun
  • 133
  • 11
1
vote
3 answers

How to check for empty array inside a payload ?

I am trying to have a choice condition where i will run a flow depending if array is empty. Example : Input : {"data":{"detailsSearch":[]}} My code : 1. #[payload.data.detailsSearch*.size() > 0] 2. #[payload.data.detailsSearch*?] I am getting an…
1
vote
1 answer

Preservation of exception cause when redelivering failed activemq jms messages processed by Mule ESB

I have built several Mule processes that consume messages from jms queues (ActiveMQ). Whenever a Mule component throws an exception, the transaction that consumes the messages rollback and the message gets redelivered to the original queue. After a…
user627096
  • 11
  • 2
1
vote
0 answers

Method level authorization using OAuth

I have a RAML file with two methods POST and GET. Also I have two applications A and B. A should only be able to call POST and B should only be able to call GET. I am using "OAuth 2.0 Access Token Enforcement Using External Provider policy." and…
user3366906
  • 149
  • 2
  • 11
1 2 3
99
100