In Below Mentioned Code what happens when target.pathsuffix is set to false .

<AssignMessage async="false" continueOnError="false" enabled="true" name="ApiCommonComponent_AssignMessage_SetTragetURL"> <DisplayName>ApiCommonComponent_AssignMessage_SetTragetURL</DisplayName> <FaultRules/> <Properties/> <AssignVariable> <Name>target.copy.pathsuffix</Name> <Value>false</Value> </AssignVariable> <IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables> <AssignTo createNew="false" transport="http" type="request"/> </AssignMessage>

0 3 204
3 REPLIES 3

Target.copy.pathsuffix is boolean variable.

"When true, request forwarded from ProxyEndpoint to TargetEndpoint retains path sufffix (the URI path fragment following the URI defined in the ProxyEndpoint base path.)"

So here as it is set to false path suffix of request is not forward to target endpoint.

Thanks Sonali .

What if HTTPTargetConnection has LoadBalancer? Target.copy.pathsuffix is ignored in that case. Any workaround?