Hi,
We have a requirement in Oracle Service Bus - Multiple source fields in get method rest query parameters to change with target field names.
we will receive query parameters from source system with different names than in the target rest get method query parameters.
What is the best approach to replace the source field names with target filed names, by mapping the values from source to target field names.
Example-
?q=empName='Mahesh' AND empSurName='KESAVA' AND empAddress='XYZ Street' AND empCity='ABC City' AND mobile =3444. AND …
with
?q=employeeFirstName='Mahesh' AND empCommunication='XYZ Street' AND employeeCity ='ABC City' AND empMobNum=3444 AND empFamilyName='KESAVA' AND…
like this.
Thanks.