Anypoint Studio (formerly know as Mule Studio) is an Eclipse-based integration development environment from MuleSoft.
Questions tagged [anypoint-studio]
1133 questions
3
votes
2 answers
DataWeave combine arrays in alternating order
If I have arrays [A,B,C]and [1,2,3]
How can I combine them to be [A,1,B,2,C,3]

anonMule
- 91
- 2
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
1 answer
Anypoint Studio -- How to check call heirarchy of a flow
How can I check the call heirarchy of a flow ? How many flows are calling that particular flow ?
for eg: if A-> B and C-> B so when I check the call heirarchy of flow B I should get Both A and C.
Can we achieve this in anypoint studio ?

HMT
- 2,093
- 1
- 19
- 51
3
votes
2 answers
Key Existence in JSON Object (Mule 4)
I need to check the existence of a particular keyword in a JSON object and based on that, create a string. My sample dataweave 2.0 code is given below:
%dw 2.0
output application/json
var arr = {
"ID": "100",
"ProdId": "Prod",
…

Triumph Spitfire
- 663
- 15
- 38
3
votes
1 answer
How to check what header is passed in the request configuration in mule
How can I find out whether the right header has been passed to my request or not.
This is my header
My request is failing…

HMT
- 2,093
- 1
- 19
- 51
3
votes
1 answer
How to convert ManagedCursorStreamProvider to JSOn object in mule 4
How to convert ManagedCursorStreamProvider to Json object in mule.
I have written a java method which takes the Json Object as input
Request Payload:
{ a: "one",
b : "two"}
Invoke static
arg0 : payload
Java Function called using invoke…

HMT
- 2,093
- 1
- 19
- 51
3
votes
1 answer
Mule changing the date format
I am trying to convert date from "dd-MM-yyyy" format to "dd/MM/yyyy"
dob as Date {format: \"dd-MM-yyyy\"} as String {format :\"dd\/MM\/yyyy\"}
I am getting a dataweave parsing error. Please help

HMT
- 2,093
- 1
- 19
- 51
3
votes
1 answer
"$ "giving mule expression error in regex
I am trying to match my input field to a regex expression. But it gives mule-expression error,
regex: ^(?:[1-9][0-9]?(?:\.[0-9]{2})?|100(?:\.0{2})?)$
Exception: Unable to resolve reference of $. at 1 : 1"
evaluating expression:
Please help me in…

HMT
- 2,093
- 1
- 19
- 51
3
votes
3 answers
Parallel For-Each vs Scatter Gather in mule
I have multiple records :
{
"item_id":1",
key1: "data1"
}
{
item_id:2
key1: "data1"
}
{
item_id:2
key1: "data1"
}
{
item_id:1
key1: "data1"
}
I do not want to process them sequentially.There can be more than 200 records. Should I process…

HMT
- 2,093
- 1
- 19
- 51
3
votes
1 answer
How can merge branch into master in MuleSoft (Anypoint design center)
We have created multiple RAML file in Design Center (Anypoint Platform - Mulesoft). We are working in team so multiple users can edit that RAML file by creating separate branch. Now I want to merge those branches into master branch. How can I do…

MohammedAshrafali
- 499
- 3
- 8
- 22
3
votes
3 answers
Can we convert Node APIs to Mulesoft?
I am new to Mulesoft and have a project already developed in Node/ExpressJs, which I want to convert to Mulesoft. So is there a way I can convert my Node APIs to Mulesoft or will I have to redo it for Mulesoft.

Deepanshu Khurana
- 33
- 6
3
votes
2 answers
How to avoid memory leaks in Mule Applications?
Are there some special things that must be considered to avoid memory leaks in Mule Applications?
How can we avoid memory leaks in Mule Applications?
For example; Do we actually have to remove flow variables? What must be done done explicitly by…

Attila
- 3,206
- 2
- 31
- 44
3
votes
4 answers
While trying to configure Mulesoft Anypoint studio with Anypoint platform it's giving error
While trying to configure Mulesoft Anypoint studio with Anypoint platform its giving error
:The url you are trying to hit doesn't exist, url:
https://anypoint.mulesoft.com/ java.net.UnknownHostException:
anypoint.mulesoft.com and i'm unable…

sailu
- 31
- 4
3
votes
6 answers
Is there any way to get a dark theme in Anypoint Studio?
My eyeballs are bleeding from the brightness. Is there any way to get a dark theme in Anypoint Studio that doesn't look bad or require hours of configuration? I know about the dark theme in the preferences, but it screws up the colors in the editor…

CamJohnson26
- 1,119
- 1
- 15
- 40
3
votes
4 answers
Correct payload transformation - Error sending HTTP request. Message payload is of type: byte[]
I'm getting:
Error sending HTTP request. Message payload is of type: byte[]
when sending HTTP request.
Situation is like on picture:
I pass url query parameters parameters and they are saved in variables, then I use map transformer to build xml…

user1598696
- 550
- 1
- 4
- 22