Below is the EV code
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ExtractVariables continueOnError="false" enabled="true" name="EV-EmpList">
<DisplayName>EV-EmpList</DisplayName>
<URIPath>
<Pattern>/workers/emplist/{EmployeeList}</Pattern>
</URIPath>
<IgnoreUnresolvedVariables>true</IgnoreUnresolvedVariables>
<Source clearPayload="false">request</Source>
</ExtractVariables>
When I call proxy where {EmployeeList} are values separated by commas(say 1223,45,888) it just picks the first value which is 1223.
I want to capture all values .
How can this be achieved ?