HTTPTargetConnection - why proxy.pathsuffix gets appended to URL

2.1k Views Asked by At

I have created multiple target-end points based on my back-end servers. Each target end point has a fixed URL.

URL is configured as -

<HTTPTargetConnection>
    <URL>https://example.com/test/</URL>
</HTTPTargetConnection>

I noticed that "proxy.pathsuffix" is automatically getting added to url (https://example.com/test/). How can I avoid this?

2

There are 2 best solutions below

5
On

You'll need to create a new JavaScript callout policy in your proxy request flow. In this JavaScript callout, simply add a single line:

context.setVariable("target.copy.pathsuffix", false);
0
On

A bit outdated in reply - but, Assign Message works for this (to avoid JavaScript):

<AssignVariable>
        <Name>target.copy.pathsuffix</Name>
        <Value>false</Value>
</AssignVariable>