Questions tagged [mule-esb]

Mule, the runtime engine of Anypoint Platform, 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. Used for questions related to Mule ESB until version 3.7.0.

Mule, the runtime engine of Anypoint Platform, 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. It enables easy integration of existing systems, regardless of the different technologies that the applications use, including JMS, Web Services, JDBC, HTTP, and more. The ESB can be deployed anywhere, can integrate and orchestrate events in real time or in batch, and has universal connectivity.

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. Mule has powerful capabilities that include:

Service creation and hosting — expose and host reusable services, using the ESB 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

Doc. here

595 questions
0
votes
1 answer

Mule DB connector copy command

I am trying to run copy command using mule db connector. I chose Bulk Execute Operation and mentioned the copy command to read the file and load to a table. I am facing the below exception. Root Exception stack trace: java.sql.BatchUpdateException:…
user94538
  • 177
  • 5
  • 24
0
votes
1 answer

How to convert list hashmap into Array using Dataweave

I have list as below [{customerId="123"},{customerId="456"},{customerId="786"}] I want to convert above as Array like below [123,456,786] Can you please help on how to achieve using dataweave
Gopi
  • 105
  • 1
  • 7
  • 24
0
votes
2 answers

Getting error when working with poll watermarking in mule

I have sfdc (salesforce connector) inside poller and enabled the watermarking for it after then getting data from sfdc and loading it to Database.
Gopi
  • 105
  • 1
  • 7
  • 24
0
votes
1 answer

How to delete the data from salesforce object?

I have a scenario where I need to delete complete data from a Salesforce object. TO achieve, first, all the Ids from that object are fetched and saved in a file in .csv format. Once the data is uploaded into the file, need to delete the record by…
Thiru
  • 404
  • 1
  • 16
  • 44
0
votes
2 answers

Mule ESB non production version

Do we have anon-production version for mulesoft. Basically we are performing a poC on AWS and are using mulesoft as middleware. Is there a developer version of mulesoft which we can deploy?
Mahesh N
  • 772
  • 1
  • 10
  • 21
0
votes
0 answers

Mule project is not showing on http://0.0.0.0:8080 after deployment in docketed container

Mule container is running as per following log :details are in code block. INFO 2017-08-20 14:53:50,580 [WrapperListener_start_runner] org.mule.runtime.module.launcher.MuleContainer:…
dkmaven
  • 77
  • 1
  • 1
  • 6
0
votes
1 answer

Mule ESB How to manage multiple project?

I have a base project named : ParentProject that contains all common businesses needed for children. I also have 2 children Child1Project and Child2Project those project inherit all businesses of the ParentProject. In the future, I may have…
English learner
  • 192
  • 1
  • 9
0
votes
2 answers

API gateway vs Mule server

enter image description here Do they each have a specific purpose? Is one better suited than the other for a particular task?
0
votes
1 answer

Compare JSONPath value with flowVars value in Mule ESB

I need to compare username from JSON below to a flowVars in Mule ESB 3.8.3 {"id":"users_0001","username":"0001","firstName":"AB","lastName":"C","email":"abc@abc.com","enabled":true} using this expression in the choice operator
Chevon Teo
  • 7
  • 1
  • 7
0
votes
1 answer

Mule flow not able to read the inbound attachmnet

I have this mule flow , where its polling the source folder to read the text file which I am adding as a attachment and sending through REST call , the same attachment I am trying to read in the different flow but inbound attachment is coming as…
0
votes
0 answers

Getting Response 404 while posting JSON payload to POST Rest API

I'm trying to post a JSON payload to a Public POST Rest API in MuleESB but I'm getting this error: org.mule.module.http.internal.request.ResponseValidatorException: Response code 404 mapped as failure. I'm able to call the API with JSON body via…
Chevon Teo
  • 7
  • 1
  • 7
0
votes
1 answer

Bitronix transaction getting exception while loading mule

I just put an entry like this in aboveof flow The below exception i got it. caused by: org.mule.api.config.ConfigurationException: Line 12 in XML document from URL…
0
votes
2 answers

Mule Change flowVars String date format using Expression Component

I am passing inputDate : 2017-06-27 16:46:36 And I want to convert format to 27-June-2017 Using Expression Component I am trying this flowVars.inputDate = new org.mule.el.datetime.DateTime(new Date(flowVars.inputDate),"yyyy-MM-dd HH:mm:ss");
0
votes
1 answer

Creating a custom transport connector in mule

I am attempting to create a custom transport in mule. I have followed the standard tutorial in mule and created the skeleton project. Being a newcomer to mule, I am struggling to understand how to proceed from there. I would appreciate if you could…
0
votes
1 answer

MUnit testing issue with apikit:config

I am trying to run the MUnit through maven in command line using (mvn test), however i am getting the below error. Its is throwing error in line no -9 where apikit:config is configured. When i tried to run it using Anypoint studio it is working…