- 3,715,714 Users
- 2,242,841 Discussions
- 7,845,505 Comments
Forum Stats
Discussions
Categories
- Industry Applications
- 3.2K Intelligent Advisor
- Insurance
- 1.1K On-Premises Infrastructure
- 374 Analytics Software
- 35 Application Development Software
- 1.8K Cloud Platform
- 700.5K Database Software
- 17.4K Enterprise Manager
- 7 Hardware
- 172 Infrastructure Software
- 97 Integration
- 52 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