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
3 answers

Testing sub-flows in Mule

I have started writing test cases to my Mule project. I have written the functional test case for my Main Flows as follows. public void testMainFlow_1() throws Exception{ MuleClient client = muleContext.getClient(); MuleMessage…
user1760178
  • 6,277
  • 5
  • 27
  • 57
6
votes
2 answers

Mule ESB can be deployed in Application Server

Can I deploy Mule on any of the application server. If so how do we deploy the Mule examples. I have configured my eclipse to run JBoss and Mule Flows dont get deployed in the JBOss server. The syncronisation gives error(null pointer). But when I…
R-JANA
  • 1,138
  • 2
  • 14
  • 30
5
votes
1 answer

JAX-WS Java client, WCF service interoperability: "400: Bad Request"

I have also asked this question on the Mirth forum. We are currently trying to connect to a WCF service using the open source health care integration engine Mirth . Mirth is Java-based, uses Mule internally which uses JAX-WS. The WCF server is…
user1230890
  • 51
  • 1
  • 2
5
votes
1 answer

Mule file transfer not deleting source files

I am using Mule 3.2 and I am moving files from one location to another location. The error/problem is that Mule keeps on processing the same files again and again and do not deleted them. The console…
Palani
  • 1,891
  • 7
  • 31
  • 42
5
votes
1 answer

External libraries for mule deployment

I have a mule app that I developed (and checked) on Eclipse's Mule IDE, and one of the components in it is using the external Microsoft JDBC SQL Server Driver class. Everything runs just fine on the Eclipse server but when I try to deploy and run…
Menyh
  • 707
  • 1
  • 10
  • 30
5
votes
2 answers

How to build a simple web proxy in Mule 3?

I ran this Mule 3 file expecting that when I browse to http://localhost:9000, I would be redirected to http://localhost/path (source - behind a login prompt):
tshepang
  • 12,111
  • 21
  • 91
  • 136
5
votes
2 answers

PubSub + Reliable message delivery to unreliably present subscribers

I need to build a system that uses a Publish/Subscribe bus (e.g. Mule, ZeroMQ, RabbitMQ), but the literature all implies that subscriber applications are reliably available to receive messages from topics to which they subscribe as soon as the…
5
votes
2 answers

How to Convert hashmap into proper json format in mule 4?

I am trying to log my hashmap it looks something like this : How do I convert it into proper json format ?
iron_man
  • 523
  • 3
  • 13
5
votes
3 answers

Unable to read exact error response body from HTTP Request connector in Mule 4.2

We are posting PO data to Oracle instance in XML format using REST API. In a failed case, it is just a printing message from error.description example "HTTP POST on resource 'https://hostname:post/fscmService/PurchaseOrderServiceV2' failed: internal…
user1927648
  • 183
  • 5
  • 14
5
votes
1 answer

Unable to get access token from Mule Salesforce

I am unable to get an access token when trying to get one from SalesForce. I entered a callback URL of https://localhost:8081/AppCallback. However, I get null in my browser when I print out the token. When I change the consumer key value I still get…
BreenDeen
  • 623
  • 1
  • 13
  • 42
5
votes
1 answer

Mule - NoClassDefFoundError: Could not initialize class java.time.zone.ZoneRulesProvider

I've been trying to solve this problem without luck, hopefully someone could help me out... I created a DateUtil.java class which is placed within my project at: src/main/java/util/DateUtil.java I call "convertTime" method with the invoke component…
Adalberto
  • 75
  • 1
  • 5
5
votes
5 answers

Mule Anypoint Studio slow to run a simple project

What I can do to Anypoint Studio run projects faster? When I run a simple project I need to wait almost 20 seconds. My computer is a new macbook pro touch i7. When I run in a VM with Windows 10 the execution is very fast. It no make sense to me I…
5
votes
1 answer

flow-ref and processing strategy

Can someone pls explain how a Mule processing strategy works when one flow is calling another one with flow-ref? Case 1. Let's say we have 2 flows: flowA and flowB, with processing strategies procA and procB, both are asynchronous but procA has 10…
spoonboy
  • 2,570
  • 5
  • 32
  • 56
5
votes
1 answer

Setup TLS 1.2 for HTTPS in Mule 3.5

We have an application using Mule standalone 3.5 (I know...) and need to force it to use TLS 1.1 or 1.2 for HTTPS. We have upgraded to the latest Java 8 (8u112). We have modified the mule's tls-default.conf to include the…
Ergwun
  • 12,579
  • 7
  • 56
  • 83
5
votes
5 answers

logging from inside dataweave

Just like we use inside XSL transformer and system.out.println for datamapper, do we have any logging mechanism for dataweave ? If not a direct component, do we have any other alternate mechanisms to achieve logging from inside…
tortoise
  • 613
  • 1
  • 7
  • 19