Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.5K Security Software
REST ADAPTER -OPERATION BINDINGS-POST-RESPONSE(JSON)

Hi Oracle SOA folks,
Please help me below queries
1.From source(REST Service) when I would like to send JSON response to the customer-In BPEL do I need to use Translate activity ?,because while testing in postman -I am unable to view JSON response without translate activity
2..From source(REST Service) when I am sending JSON response to the customer-the JSON body is like
<Root-Element xmlns="http://TargetNamespace.com/IN_REST_DEKO_UPLOADSO_UPLOADSO_response">
{
"httpCode" : 200,
"status" : "SUCCESS",
"message" : "SOUPLOAD SUCCESSFULLY"
}
</Root-Element>
above one is POSTMAN(RAW VIEW)
but customer is only expecting only JSON body
{
"httpCode" : 200,
"status" : "SUCCESS",
"message" : "SOUPLOAD SUCCESSFULLY"
}
Please help how to remove root tags while sending to customer