middleware - Oracle Service Bus - XML based proxy service -
i have xml file like
<a> <b>abc</b> <c>1</c> </a> <a> <b>def</b> <c>2</c> </a>
i have fetch value of 'b' based on value of 'c' input of proxy service in osb. please how create type of proxy service?
an xquery , 2 simple assigns:
create xquery resource return xml structure 1) inside proxy, first action assign xquery call file above local variable, ie: $xmlfile 2) assign $xmlfile/a[./c=$body/c]/b/text()
Comments
Post a Comment