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

DataWeave: when/otherwise statement returns null

When writing the following when/otherwise condition, the value of "derived_company_id" as null. What is it that the code is missing? Code: %dw 1.0 %output application/java --- { src_account_type: "external", tgt_company_id : "Mary", …
1
vote
1 answer

mulesoft maven test results not published

I'm using maven to run munit test cases on my mulesoft code. The test coverage report is published to the console, but I'm trying to publish it to a html. I have configured my pom.xml as below. But I can't see html/json generated in…
DevOps Junky
  • 287
  • 1
  • 5
  • 22
1
vote
1 answer

MULE 4 IntelliJ resolving xsd schemas

I am trying to use IntelliJ as IDE instead of Anypoint Studio because it runs very bad on windows. I've downloaded the plugin, but I'm having troubles setting up the xsd references of the connectors, it keeps complaining that it cannot find the…
Daniele Cervi
  • 75
  • 3
  • 11
1
vote
0 answers

Sending http post request consuming soap service using cfx-client in mule

Is it applicaple in cfx-client mule to send http post request with input paramaters in the body . That's which I need below . Request : http://localhost:8088/test/integrate with paramaters in request body like token and guid Response…
Elsayed
  • 2,712
  • 7
  • 28
  • 41
1
vote
2 answers

Groovy script overwriting first byte?

Hi so this string I'm creating and appending in groovy is somehow corrupting the first byte and I have no idea why this happening. Its the second string creation. In this script I'm making a query and the first one works but the second…
aspark
  • 33
  • 5
1
vote
0 answers

MuleSoft : what is the root cause | Error sending HTTP request. (org.mule.api.MessagingException)

I am getting this exception intermittently while making HTTP request to third-party APIs : Exception trace stack is: Error sending HTTP request. (org.mule.api.MessagingException) …
1
vote
2 answers

Handle out of sync point issue via IBM JMS from Mule

I am connecting MQ-8.x from Mule via JMS and recently I had faced an issue that seems like MQ write operation is going out of sync point range and due to this and also the huge inbound load, MQ went in to deadlock state.
NGBeginner
  • 403
  • 1
  • 3
  • 14
1
vote
3 answers

How do you accumulate values within a ForEach loop in Mule?

I have the below json output: { "results": [ { "ID": "1", "ImageID": "2", "Name": "Test1", "Owner": "sysadmin", "Author": "sysadmin", "Creator": "sysadmin" }, { "ID": "2", …
user3368821
  • 79
  • 2
  • 9
1
vote
1 answer

Scatter Gather Exceptional handling

Can someone help me with mule scatter gather component. My requirement is if any of the flow fails then the other flows need not be executed and the exception needs to be thrown to the UI specifying the extact expection thrown from the failed API…
Shilpa
  • 101
  • 14
1
vote
1 answer

Keep the original payload after database action in Mule workflow

I am using Mule 4 and Anypoint 7. In my flow I want to insert records into a database but still keep the original payload in the message. Previously I would have placed the database connector into an enricher scope so that the original payload is…
user3165854
  • 1,505
  • 8
  • 48
  • 100
1
vote
0 answers

Batch processing in Mule 4

I am performing a batch operation using batch scope in mule 4. I am using a Sfdc connector inside my batch step to query the Ids. The batch is happening in sets of say 200 and total 1000 inputs. I need to get all the 1000 Ids from Sfdc query outside…
Manoj
  • 11
  • 2
1
vote
0 answers

Special characters are not passing through as payload in mule

I have following json that I am using as a #[payload] in mule but the special characters are getting converted into ?? in Request body. { "AcceptTruliooTermsAndConditions": true, "CleansedAddress": false, "VerboseMode": true, …
1
vote
1 answer

Mule 4 Pipe Delimited text file to JSON

I need to convert Pipe Delimited text file to JSON in Mule 4. I tried with below code. `
veejay
  • 81
  • 2
  • 12
1
vote
3 answers

Nested Elements Mapping XML to JSON in DataWeave

I have XML Structure as shown below to be transformed to JSON. Test
1
vote
3 answers

How to show specific fields from json in mule flow

Hi i am trying to create a simple mule flow where i get the json data from a rest url eg . { "token" : 123, "id" : 456, "email" : "abc@abc.com", "status" : "Success" } now i want my…
user3428616
  • 65
  • 4
  • 14
1 2 3
99
100