0
votes
1answer
58 views

JSON Message to SOAP Request in Mule

I just found this: How can I transform an incoming SOAP response into a JSON document using WSO2 ESB 4.0.3? and basically I'd like to do something similar - just in Mule: I've got a JSON message and ...
0
votes
0answers
69 views

how to access json array element in mule esb?

I want to access json data generated from the flow and want to use it in mongoDB connector. JSON data generated is like this: [ { "_id": { "$oid": ...
0
votes
2answers
151 views

How to apply regular expression on a JSON field to extract certain values from it and store into PostgreSQL Dataabse fron Mule Studio?

Say I have a REST based service that returns a JSON object as under { "AlertDetails": { "start":0, "left":0, "_itemList": [ ...
0
votes
1answer
88 views

Mule Database Query to JSON output nesting not working?

I am new to using Mule and having a problem with outputting nested Json. I am using mule 3.3 and the GUI interface. I add the database component to my flow and run some simple SQL including a 'one to ...
2
votes
1answer
732 views

How to read REST service that returns JSON object and store the same into PostgreSQL using Mule ESB, Mule Studio

So I have a REST based service which is hosted at http://localhost:35798/RestServiceImpl.svc/json/567 If I query that, I get the result as: {"JSONDataResult":"You requested product 567"} I need ...
0
votes
1answer
165 views

Parse JSON in Mule 3.2 Flow

If I have the following JSON [ { "category": "reference", "author": "Nigel Rees", "title": "Sayings of the Century", "price": 8.95 }, { "category": "fiction", "author": "Evelyn ...
0
votes
1answer
154 views

how to access json data mule esb

i want to access json data generated from the sync flow into an async flow. I am getting json data from sync flow correctly and i want to fetch certain attribute value from that my json data is as ...
0
votes
1answer
664 views

Mule collection splitter with JSON

I have a JSON that looks something like the one pasted below. I am trying to extract each individual record and push it onto a queue. How would I extract each record in Mule? I've been trying to ...
1
vote
2answers
857 views

Mule ESB HTTP post with JSON body

I am having a hard time figuring out how to do an HTTP POST with a JSON in a request body. A sample of my flow is posted below. I have a poller that polls a POJO, which generates a JSON when it is ...
0
votes
1answer
612 views

Modify the JSON output with Mule and Jersey

My goal is stupidly simple. I just want to wrap a json response from Jersey module in Mule in a JSON response such that: {"status": "ok", message:<json-message>} I tried to use a ...
0
votes
1answer
1k views

How to POST to REST api from Mule Flow?

I need some help with Mule 3 esb. I am reading a message from a JMS Queue and then I want to POST some parts of this message to an external REST api and handle the response. I have only used Mule to ...
2
votes
2answers
4k views

How to convert JAVA Object to JSON Efficiently..?

I am using Mule. I have a JAVA Object that is populated from my internal Class..It is actually a HashMap<String,Object>. Object can be anything..another HashMap, OR List etc ..Now i have to ...
1
vote
2answers
346 views

Converting POJO to JSON using Mule 3

I'm getting started using Mule, but the documentation is all over the place. I am trying to write a fairly simple flow. Here is what I'd like it to do: Call existing Spring service that returns a ...
1
vote
1answer
733 views

Mule - Returning in JSON and XML on runtime..?

In Mule, currently I am using a custom transformer "JavaObjectToJSON" (as a Response Transformer) to convert a POJO to JSON i.e. my component class returns a Java Object (List or HashMap) and this ...