DZone
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
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Rethinking Enterprise Integration: The Understated Role of Enterprise Service Bus (ESB)
  • Creating a Mule ESB Sample Hello World Application

Trending

  • Building a Skill-Based Agentic Reviewer with Claude Code: A Practical Guide Using Skills.MD, MCP Servers, Tools, and Tasks
  • A 5-Step SOC Guide That Meets RBI Expectations and Strengthens Security Operations
  • Self-Hosted Inference Doesn’t Have to Be a Nightmare: How to Use GPUStack
  • Why We Chose Iceberg Over Delta After Evaluating Both at Scale
  1. DZone
  2. Software Design and Architecture
  3. Integration
  4. Handling Special Characters in URLs With WSO2 ESB

Handling Special Characters in URLs With WSO2 ESB

In this post, I’m going to explain how you can resolve the issue of using special characters when using REST APIs to match the query parameter in a uri-template.

By 
Chanaka Fernando user avatar
Chanaka Fernando
·
May. 07, 18 · Tutorial
Likes (2)
Comment
Save
Tweet
Share
13.0K Views

Join the DZone community and get the full member experience.

Join For Free

Let’s say you have a URL which needs to send an email address as a query parameter. If you create a standard REST API within WSO2 ESB (or EI) and try to match the query parameter in a uri-template, it will fail during execution. As an example, if you have the below API definition.

<api xmlns="http://ws.apache.org/ns/synapse" name="EmailAPI" context="/voice">
   <resource methods="POST GET" uri-template="/details?email={email}">
      <inSequence>
         <log level="full">
            <property name="EMAIL" expression="$url:email"/>
         </log>
         <respond/>
      </inSequence>
   </resource>
   <resource methods="POST GET" uri-template="/phone/{number}">
      <inSequence>
         <log level="full">
            <property name="PHONE" expression="$ctx:uri.var.number"/>
         </log>
         <respond/>
      </inSequence>
   </resource>
</api>

You would expect that following request to work properly.

http://localhost:8280/voice/[email protected]

If you hit the above URL, you will get a “404 not found” error. The reason is ESB cannot dispatch the request to a matching resource since you have special character “@” in the URL path. You can find more information about these special characters here.

In this post, I’m going to explain how you can resolve this special character issue using two approaches.

Solution 1

The first solution is to URL encode the special character when sending the request to this API. Now the request URL should look like below.

http://localhost:8280/voice/details?email=chanaka%40gmail.com

When you send the request with the above URL, it will dispatch to the correct resource and you will see the log message with the proper email address similar to the below log entry.

[2018-05-04 13:35:12,660] [EI-Core] INFO - LogMediator To: /voice/details?email=chanaka%40gmail.com, MessageID: urn:uuid:281dcd97-2043-45a3-8842-d3a0b27f5efa, Direction: request, EMAIL = [email protected], Envelope: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><name>chanaka</name></soapenv:Body></soapenv:Envelope>

Even though the incoming URL parameter is encoded, once it is accessed within the mediation sequence using the $url syntax, it is giving the properly decoded value.

This solution is easier for the developers, but harder for the users, of this API.

Solution 2

Instead of asking your users to change the client side implementation, we can handle this within the ESB itself using a simple trick. The trick is to use "*" to define the URL path when creating the API. You can create an API similar to the below configuration.

<api xmlns="http://ws.apache.org/ns/synapse" name="AsterixAPI" context="/voice">
   <resource methods="POST GET" uri-template="/details*">
      <inSequence>
         <log level="full">
            <property name="EMAIL" expression="$url:email"/>
            <property name="PHONE" expression="$url:phone"/>
         </log>
         <respond/>
      </inSequence>
   </resource>
   <resource methods="POST GET" uri-template="/phone*">
      <inSequence>
         <log level="full">
            <property name="PHONE" expression="$url:phone"/>
         </log>
         <respond/>
      </inSequence>
   </resource>
</api>

Here we have defined the matching uri-template with "*" so that it will capture all the requests coming into this context "/voice/details*". Now, what happens if you send a request to the following URL?

http://localhost:8280/voice/[email protected]&phone=(077)-3337238

In this URL, we have 3 special characters, @, (, ), but we are not asking the client to URL encode those parameters. Rather, the user can send them as it is to the API and within the ESB mediation runtime, these query parameters are accessed using the $url syntax. Here we are specifically ignoring these special characters from template matching to avoid the special character impact. Now you can see a log similar to what I've got below if you send a request to the above URL.

[2018-05-04 14:20:57,841] [EI-Core] INFO - LogMediator To: /test2/[email protected]&phone=(077)-3337238, MessageID: urn:uuid:6926aa13-8f1d-40ef-afb9-02021d2d908a, Direction: request, EMAIL = [email protected], PHONE = (077)-3337238, Envelope: <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><email>[email protected]</email></soapenv:Body></soapenv:Envelope>

In the above log, you can clearly see that email address and phone number query parameters are accessed within the mediation sequence in the proper format.

These are the two solutions for the URL special character related requirements within WSO2 ESB or EI.

Enterprise service bus

Published at DZone with permission of Chanaka Fernando. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Rethinking Enterprise Integration: The Understated Role of Enterprise Service Bus (ESB)
  • Creating a Mule ESB Sample Hello World Application

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

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

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook