DZone
Integration Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Integration Zone > How We Can Set/Modify/Add "http.uri.params" of Inbound Properties in Mule Flow

How We Can Set/Modify/Add "http.uri.params" of Inbound Properties in Mule Flow

A quick tutorial to modify and add existing "http.uri.params" in Mule, with code for reference.

Rohit Khanna user avatar by
Rohit Khanna
·
Mar. 18, 16 · Integration Zone · Tutorial
Like (3)
Save
Tweet
8.31K Views

Join the DZone community and get the full member experience.

Join For Free

Here is a brief tutorial to modify and add existing "http.uri.params" in Mule. Below is the code for reference:

1) Create Java Transformer in Mule.

2) Associate with any Java Class which extend AbstractMessageTransformer class.

3) Override "transformMessage(MuleMessage message, String outputEncoding)" in that class.

4) Use below to do the modification/addition:

ParameterMap map = message.getInboundProperty("http.uri.params");

For example, if you want to override/update/add email param in uri. Use the below URI:

map.put("email", "rohit061989@gmail.com");
message.setProperty("http.uri.params", map, PropertyScope.INBOUND);
return message;

5) Use below code to set new uri param in case "getInboundProperty("http.uri.params")" is null:

ParameterMap map = new ParameterMap();
map.put("email", "rohit061989@gmail.com");
message.setProperty("http.uri.params", map, PropertyScope.INBOUND);
return message;
Property (programming) Flow (web browser) Java (programming language) Strings Uniform Resource Identifier Data Types

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • 10 Steps to Become an Outstanding Java Developer
  • Maven Tutorial: Nice and Easy [Video]
  • Querying Kafka Topics Using Presto
  • 6 Things Startups Can Do to Avoid Tech Debt

Comments

Integration Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo