Questions tagged [mulesoft]

This tag is not clearly aligned with a specific MuleSoft product. If the question is related to the Mule ESB or Mule Runtime product please use the mule-esb tag instead.

MuleSoft is a company name, not a product.

MuleSoft was acquired by Salesforce in 2018.

MuleSoft produces the Anypoint Platform, which consists of:

  • Anypoint Exchange
  • Anypoint Security
  • Anypoint Analytics
  • Anypoint Studio
  • Mule runtime engine
  • etc.
1619 questions
6
votes
3 answers

How to resolve a maven dependency in a bitbucket pipeline that exists in another repo

I'm setting up a deployment pipeline for my companys mulesoft APIs using bitbucket-pipelines. This technology is attractive to us because of the built in integrations with Jira. The problem is that we are using a domain project. All of the other…
Shane Chambry
  • 61
  • 1
  • 3
5
votes
2 answers

Connect Timeout Error on cloudhub : Mule version:4.2.2

I am trying to hit an https client api which is working fine on postman(gives response in 800ms) and in local mule flow but it is not working fine on cloudhub . I am getting Connect Timeout error. It tries connecting for 30 secs(as per logs) and…
HMT
  • 2,093
  • 1
  • 19
  • 51
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

How to compare JSON in powershell

I have a requirement where I need to compare JSON object from a file to the JSON message which comes into Anypoint MQ queue. I am able to get the message from the queue. I have used below script but it is not working. I did both -eq and…
4
votes
1 answer

How to compare and merge two JSON objects using Dataweave 2.0

I have a requirement where I need to compare 2 input json objects - obj1 and obj2. Both inputs can have same keys as well as additional key. In case of same keys in both inputs, the values should be fetched from obj2. In case a key is not available…
user7194270
  • 117
  • 2
  • 16
4
votes
5 answers

Global Variable in Mulesoft

We have global Variable concept in TIBCO where do we have the same concept in Mulesoft ? Like setting a Global Variable so that during the run time or deployment based on environment. Is there any similar case in Mulesoft
Vignesh
  • 1,183
  • 2
  • 10
  • 18
4
votes
1 answer

Why does Mule DataWeave array map strip top level objects?

I'm trying to understand the behaviour of DataWeave v1.0 when it comes to mapping objects in a root JSON array. At this stage I just want to map each item in the array as-is without mapping each individual field of the item. I need to do it for each…
Johnson
  • 451
  • 2
  • 13
4
votes
1 answer

Precedence in multiple DataWeave functions

I'm going through the Mule Dev 1 course and am stumped between module content and what I'm seeing in practice. The module content states that: "When using a series of functions, the last function in the chain is executed first." So filghts orderBy…
3
votes
1 answer

Why is a vulnerability identified by the OWASP Dependency-Check tool for Mule Runtime 4.4.0 if it doesn't actually belong to that version?

My mule application is built using mule runtime 4.4.0. In pom.xml of application, I have specified the "mule-http-connector@1.7.3" dependency as shown below: org.mule.connectors
Jaci_2019
  • 31
  • 2
3
votes
3 answers

Error trying to remove a namespace from an XML in Mule 4

I see the error like "Trying to write END_DOCUMENT when document has no root" while I replace all the payload env and xmlns with "". It throws error : Message : "Trying to write END_DOCUMENT when document has no root (ie. trying to…
codey_08
  • 249
  • 1
  • 11
3
votes
0 answers

org.mule.construct.Flow: Failed to stop service: https-testFlow in mule 3

Working on HTTPS in Mule 3, While run the Project its failed to Deploy. Error: Caused by: org.mule.api.lifecycle.InitialisationException: KeyStore must be configured for server side SSL at…
Integraty_dev
  • 500
  • 3
  • 18
3
votes
0 answers

SplunkHttp Appender Error: ERROR Error processing element SplunkHttp ([Appenders: null]): CLASS_NOT_FOUND

Suddenly from 31/May/2021- we are getting this error ERROR Error processing element SplunkHttp ([Appenders: null]): CLASS_NOT_FOUND We are using log4j2 configuration file for sending logs to Splunk. Full file below: Intentionally hiding host,…
user3069970
  • 71
  • 1
  • 3
3
votes
1 answer

Disabling TLS Versions on MULE RUN TIME on Premise

Currently mule 3.9 with java 1.8 and enabled all TLS so now i need to disable v 1.0 , there will be any problem.. Or there will be any issue in existing mule API that are connected to other APIs using https as my mule APIs are calling other external…
muledev
  • 33
  • 3
3
votes
2 answers

Mulesoft DataWeave: How to escape $ for quoted string

...I'm using Anypoint Studio 7.6 and writing in DataWeave 2.0 I cannot find the definitive way to include the $ (dollar sign) character in a quoted string. Here's what I tried: %dw 2.0 output application/dw var sign = "\u0024" // unicode dollar…
agentv
  • 739
  • 1
  • 9
  • 21
3
votes
2 answers

Dataweave 2.2 What's the difference between takeWhile and filter?

%dw 2.0 import * from dw::core::Arrays output application/json var arr = [0,1,2,4,3] --- arr filter $ <= 2 and %dw 2.0 import * from dw::core::Arrays output application/json var arr = [0,1,2,4,3] --- arr takeWhile $ <= 2 They both give the same…
Dale
  • 1,289
  • 3
  • 16
  • 36
1
2 3
99 100