Questions tagged [mule-studio]

Mule Studio is a tag that's used to refer to the former MuleSoft's IDE product previous to the release of MuleSoft Anypoint Studio. This tag should be not be used for Anypoint Studio since its release 3.5.0 (May 20, 2014).

Refers to MuleSoft's former IDE, Mule Studio, which was replaced by Anypoint STudio in 2014. Mule Studio is a customized Eclipse environment that provides an IDE and other tools used to create Mule Applications and Anypoint Connector components.

1733 questions
3
votes
3 answers

Creating a Mule project in Eclipse

I have started working with Mule. I am working with Mule Studio. This looks good. But when I want to create a Mule project in Eclipse I am struck. Please suggest me how I can create a Mule project in Eclipse.
user1985027
3
votes
1 answer

Spring3 Dependency Injection not working with mule

I am unable to inject customerDao object in reference variable inside CustomerServiceImpl service class. Here is my mule_flow.mflow file
Rajesh
  • 2,934
  • 8
  • 42
  • 71
2
votes
0 answers

Mule 4 debug how to maintain history of debug statements in studio

In Mule 4 anypoint studio when I am debugging an application , many a times I need to view the payload in json format , so while in debug view I go here : Evaluate Dataweave expression Here everytime I have to manually paste the below dataweave: %dw…
boomslaw
  • 31
  • 4
2
votes
1 answer

Convert TEXT file to JSON in Dataweave

How can I convert TEXT file into JSON in Dataweave. Input: "[ { "quantity": "1.0", "uom": "every", "amount": "5.0", "allocation": [ { "ID": "22245", "price": "156", "desc": "Product A1" } ], …
Vikash
  • 21
  • 2
2
votes
3 answers

How to access a multi value XML containing a json string

I have a json string inside a multi value xml tag, which I'm struggling to access. I would like to concatenate the "pid" values to have something like "listOfPids" : "0000444, 0000111"
maco
  • 55
  • 7
2
votes
0 answers

How to create a mule 4.3 copy book of flat file for complex data structure?

Need to read a fixed length file and transform it into a java object. Can anyone help to create a mule 4.3 copy book for below data structure transformation? Header headerValue2headerValue3headerValue4headerValue5 T_Level1…
2
votes
0 answers

How to connect Cloud Kafka Cluster from Mule 3?

How to connect confluent kafka cluster(Cloud) from Mule 3 kafka connector ? Because i am seeing only Bootstrap Server URL and other options for Producer and Consumer properties only. So there is no option to configure for below…
user2848031
  • 187
  • 12
  • 36
  • 69
2
votes
1 answer

How to call a java method with Long type in Mule4?

My Java class has a constructor like public Authenticator(String username, String applicationId, String zz, String yy, String zz, String vv,Long cc) { .. } Im initiating this constructor in mule as follows;
Ratha
  • 9,434
  • 17
  • 85
  • 163
2
votes
1 answer

Dataweave 1.0 Add Items to Array

My sample payload is given below: { "ID": "72a6dcc0", "SourceCode": "ABC", "TargetCode": "DEF", . . . . . "Products": [ { "ProdId": "410ef294", "ProdDetails": { "ProdIdentifier": "410ef294-e80b", …
2
votes
6 answers

503 Service Unavailable in Mule

I am getting 503 Service Unavailable when call in Mule application... Call is not reaching to HTTP Listener I think and beside of HTTP Listener there is Set Variable... to Set Variable also not reaching call... Till day before yesterday it was…
Ravi
  • 21
  • 2
  • 7
2
votes
1 answer

Extract field from array using DW 1.0 function

I have a session variable called varIP1 which has a value like below: (It's mime type is application/java) {abc={FedId=abc, Id=01FcLA, type=User, Profile={Id=02EmQA, type=Profile, Name=Analyst}}} I am interested in extracting the first Id (01FcLA)…
2
votes
2 answers

How can I verify inside a Set Variable (Mule 4) if a parameter exists without having a Value Selector error?

I am using Mule 4 and I have a Value Error Selector when the payload is a string instead of having the following structure: {"status": 0, "content": {"status": "201",........... I am using a set variable in Mule 4 giving this value:
2
votes
1 answer

how to handle http connector response code

Currently in mule, I have a flow process that makes an http connection to elasticsearch. We are using the scroll api and all connections are fine. I am trying to create a flow to handle the 404 status code which would be returned in the event that…
dataviews
  • 2,466
  • 7
  • 31
  • 64
2
votes
2 answers

Anypoint Studio 7 Installation issue java not found

I am trying to setup Anypoint 7.3 on my machine . I have installed jdk and followed all the steps but still on trying to start Anypoint i get an error that JDK must be installed. This is my config -vmargs --add-modules=ALL-SYSTEM -vm C:\Program…
user3428616
  • 65
  • 4
  • 14
2
votes
3 answers

How does one transform JSON object names as an element name? Also, remove a nested object?

Using Dataweave I'm attempting to transform this: { "ConcurrentAsyncGetReportInstances": { "Max": 200, "Remaining": 200 }, "ConcurrentSyncReportRuns": { "Max": 20, "Remaining": 20 }, …